variableOf
Creates a new BinaryDecisionDiagram from the given value, whose Variable.low is a false Terminal and whose Variable.high is a true Terminal. This represents the simplest possible Boolean formula: a single variable, with no further sub-structure. See also the bddOf shortcut function.
Return
a new single-variable BinaryDecisionDiagram.
Parameters
value
the value representing the Boolean variable.
fun <E : Comparable<E>> variableOf(value: E, low: BinaryDecisionDiagram<E>, high: BinaryDecisionDiagram<E>): BinaryDecisionDiagram<E>
Creates a new Variable node from the given value and low/high sub-diagrams, using the BinaryDecisionDiagramBuilder.defaultOf builder (no reduction optimizations are applied).