Companion

object Companion

Functions

terminalOf
Link copied to clipboard
fun <E : Comparable<E>> terminalOf(truth: Boolean): BinaryDecisionDiagram<E>
Creates a new Terminal node from the given boolean value.
variableOf
Link copied to clipboard
fun <E : Comparable<E>> variableOf(value: E): BinaryDecisionDiagram<E>
Creates a new BinaryDecisionDiagram from the given value
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 nodes.