Package com.bayesserver.inference
Class JunctionTreesDefinition
- java.lang.Object
-
- com.bayesserver.inference.JunctionTreesDefinition
-
public final class JunctionTreesDefinition extends Object
A jumction tree or junction trees. There can be multiple junction trees if the network is disconnected or evidence disconnects.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CliqueDefinition>
getCliques()
The cliques in the junction tree(s).List<EliminationDefinitionCollection>
getEliminationOrder()
The order in which nodes would be eliminated to create the junction tree(s).List<SepsetDefinition>
getSepsets()
The Sepsets in the junction tree(s).
-
-
-
Method Detail
-
getCliques
public List<CliqueDefinition> getCliques()
The cliques in the junction tree(s).
-
getSepsets
public List<SepsetDefinition> getSepsets()
The Sepsets in the junction tree(s).
-
getEliminationOrder
public List<EliminationDefinitionCollection> getEliminationOrder()
The order in which nodes would be eliminated to create the junction tree(s). Note that more that one node can be eliminated at once, which is why it is a collection.
-
-