Class BooleanDDNode
Boolean decision node. A BooleanDDNode has states
false
and true
.
Implements
Inherited Members
Namespace: HAPI
Assembly: hugincs-9.4-netstandard2.0-x64.dll
Syntax
public class BooleanDDNode : DiscreteDecisionNode, ICloneable
Constructors
BooleanDDNode(DiscreteNode)
Constructs a new BooleanDDNode object corresponding to the
given DiscreteNode object node
.
Declaration
public BooleanDDNode(DiscreteNode node)
Parameters
Type | Name | Description |
---|---|---|
DiscreteNode | node | The DiscreteNode to be converted. |
Remarks
The new object is identical to node
except that it will be a "boolean" decision node. As a
side-effect, node
dies (that is, becomes
"not-alive"). And if node
is an output
node, then all output clones associated with the node also die.
Exceptions
Type | Condition |
---|---|
ExceptionHugin |
BooleanDDNode(NetworkModel)
Constructs a Boolean decision node with states
false
and true
.
Declaration
public BooleanDDNode(NetworkModel belongsTo)
Parameters
Type | Name | Description |
---|---|---|
NetworkModel | belongsTo |
Exceptions
Type | Condition |
---|---|
ExceptionHugin |