transClose {bnem} | R Documentation |
calculates transitive closure of a hyper-graph
transClose(g, max.iter = NULL, verbose = FALSE)
g |
hyper-graph in normal form |
max.iter |
maximal iteration till convergence |
verbose |
TRUE for verbose output |
transitive closure in normal form
Martin Pirkl
g <- c("A=B", "B=C") gclose <- transClose(g)