Package jline.api.mdd
Class MddStruct
java.lang.Object
jline.api.mdd.MddStruct
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal int[]domain[k] is the number of local states at level k.final intNumber of variable levels.final int[]nnodes[k] is the live node count at level k.final int[][][]node[k][p][v] is the child of arc v of level-k node id p+1: a level-(k+1) node id when k < K-1, or a terminal when k == K-1.final intId of the top (level-0) node; MDD.TERM_FALSE for the empty set. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
K
public final int KNumber of variable levels. -
domain
public final int[] domaindomain[k] is the number of local states at level k. -
root
public final int rootId of the top (level-0) node; MDD.TERM_FALSE for the empty set. -
nnodes
public final int[] nnodesnnodes[k] is the live node count at level k. -
node
public final int[][][] nodenode[k][p][v] is the child of arc v of level-k node id p+1: a level-(k+1) node id when k < K-1, or a terminal when k == K-1.
-
-
Constructor Details
-
MddStruct
public MddStruct(int K, int[] domain, int root, int[] nnodes, int[][][] node)
-