is.conformal {HyperG} | R Documentation |
Conformal Hypergraphs
Description
Tests whether a hypergraph is conformal.
Usage
is.conformal(h)
is.bi.conformal(h)
Arguments
h |
a hypergraph. |
Details
A hypergraph h is conformal if all the maximal cliques of its 2-section are the maximal (by inclusion) edges of h. The test uses a theorem (see the reference, Theorem 7.6.4) that says a hypergraph is conformal if and only if its dual is Helly. A hypergraph is bi-conformal if it and its dual are conformal.
Value
a logical.
Author(s)
David J. Marchete dmarchette@gmail.com
References
Voloshin, Vitaly I. Introduction to graph and hypergraph theory. Nova Science Publ., 2009.
See Also
Examples
h <- hypergraph_from_edgelist(list(1:4,3:6,5:10))
is.conformal(h)
## TRUE
h <- hypergraph_from_edgelist(list(1:2,2:3,c(1,3)))
is.conformal(h)
## FALSE
[Package HyperG version 1.0.0 Index]