build a JunctionTree.
build.junction.tree.RdStarting from the adjacency matrix of the directed acyclic graph of the network contained in an InferenceEngine, build a JunctionTree for the network and store it into an InferenceEngine.
Usage
build.junction.tree(object, ...)
# S4 method for InferenceEngine
build.junction.tree(object, ...)Arguments
- object
an
InferenceEngineobject.- ...
potential further arguments for methods.
Examples
if (FALSE) {
dataset <- BNDataset("file.header", "file.data")
net <- BN(dataset)
eng <- InferenceEngine()
eng <- build.junction.tree(eng)
}