Class ConstraintList.Node
- java.lang.Object
-
- net.ssehub.easy.reasoning.core.reasoner.ConstraintList.Node
-
- Enclosing class:
- ConstraintList
protected static class ConstraintList.Node extends java.lang.ObjectThe node type in a linked constraint base.- Author:
- Holger Eichelberger
-
-
Field Summary
Fields Modifier and Type Field Description private Constraintconstraintprivate ConstraintList.Nodenextprivate ConstraintList.Nodeprev
-
Constructor Summary
Constructors Modifier Constructor Description privateNode(ConstraintList.Node prev, Constraint constraint, ConstraintList.Node next)Creates a node.
-
-
-
Field Detail
-
constraint
private Constraint constraint
-
next
private ConstraintList.Node next
-
prev
private ConstraintList.Node prev
-
-
Constructor Detail
-
Node
private Node(ConstraintList.Node prev, Constraint constraint, ConstraintList.Node next)
Creates a node.- Parameters:
prev- the previous nodeconstraint- the constraint assigned to the nodenext- the next node
-
-