transClose {bnem}R Documentation

transitive closure

Description

calculates transitive closure of a hyper-graph

Usage

transClose(g, max.iter = NULL, verbose = FALSE)

Arguments

g

hyper-graph in normal form

max.iter

maximal iteration till convergence

verbose

TRUE for verbose output

Value

transitive closure in normal form

Author(s)

Martin Pirkl

Examples

g <- c("A=B", "B=C")
gclose <- transClose(g)

[Package bnem version 1.0.0 Index]