is.chordal()
was renamed to is_chordal()
to create a more
consistent API.
is.chordal(
graph,
alpha = NULL,
alpham1 = NULL,
fillin = FALSE,
newgraph = FALSE
)
The input graph. It may be directed, but edge directions are ignored, as the algorithm is defined for undirected graphs.
Numeric vector, the maximal chardinality ordering of the
vertices. If it is NULL
, then it is automatically calculated by
calling max_cardinality()
, or from alpham1
if
that is given..
Numeric vector, the inverse of alpha
. If it is
NULL
, then it is automatically calculated by calling
max_cardinality()
, or from alpha
.
Logical scalar, whether to calculate the fill-in edges.
Logical scalar, whether to calculate the triangulated graph.