% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/bnem_main.r
\name{transRed}
\alias{transRed}
\title{transitive reduction}
\usage{
transRed(g, max.iter = NULL, verbose = FALSE)
}
\arguments{
\item{g}{hyper-graph in normal form}

\item{max.iter}{maximal number of iterations till convergence}

\item{verbose}{TRUE for verbose output}
}
\value{
transitive reduction of the hyper-graph in normal form
}
\description{
calculates transitive reduction of a hyper-graph in normal form
}
\examples{
g <- c("A=B", "A=C", "B=C", "B=D", "!A=D")
gred <- transRed(g)
}
\author{
Martin Pirkl
}