Learn R Programming

HyperG (version 1.0.0)

is.conformal: Conformal Hypergraphs

Description

Tests whether a hypergraph is conformal.

Usage

is.conformal(h)
is.bi.conformal(h)

Arguments

h

a hypergraph.

Value

a logical.

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.

References

Voloshin, Vitaly I. Introduction to graph and hypergraph theory. Nova Science Publ., 2009.

See Also

is.helly.

Examples

Run this code
# NOT RUN {
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
# }

Run the code above in your browser using DataLab