Package com.bayesserver.inference
Class SepsetDefinition
- java.lang.Object
-
- com.bayesserver.inference.SepsetDefinition
-
- All Implemented Interfaces:
JunctionTreeNodeDefinition
public final class SepsetDefinition extends Object implements JunctionTreeNodeDefinition
The definition of a sepset in a junction tree, without the instantiation of the distribution.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CliqueDefinition
getChild()
The child clique in the junction tree.CliqueDefinition
getParent()
The parent clique in the junction tree.Double
getSize()
The size (number of parameters) of the distribution, if it were to be instantiated.List<VariableContext>
getVariableContexts()
The variables in the sepset (optionally with times for DBNs).String
toString()
-
-
-
Method Detail
-
getVariableContexts
public List<VariableContext> getVariableContexts()
The variables in the sepset (optionally with times for DBNs).- Specified by:
getVariableContexts
in interfaceJunctionTreeNodeDefinition
-
getParent
public CliqueDefinition getParent()
The parent clique in the junction tree.
-
getChild
public CliqueDefinition getChild()
The child clique in the junction tree.
-
getSize
public Double getSize()
The size (number of parameters) of the distribution, if it were to be instantiated.- Specified by:
getSize
in interfaceJunctionTreeNodeDefinition
-
-