Class CliqueMinimalSeparatorDecomposition<V,E>
java.lang.Object
org.jgrapht.alg.clique.CliqueMinimalSeparatorDecomposition<V,E>
- Type Parameters:
V- the graph vertex typeE- the graph edge type
Clique Minimal Separator Decomposition using MCS-M+ and Atoms algorithm as described in Berry et
al. An Introduction to Clique Minimal Separator Decomposition (2010), DOI:10.3390/a3020197,
http://www.mdpi.com/1999-4893/3/2/197
The Clique Minimal Separator (CMS) Decomposition is a procedure that splits a graph into a set of subgraphs separated by minimal clique separators, adding the separating clique to each component produced by the separation. At the end we have a set of atoms. The CMS decomposition is unique and yields the set of the atoms independent of the order of the decomposition.
- Author:
- Florian Buenzli (fbuenzli@student.ethz.ch), Thomas Tschager (thomas.tschager@inf.ethz.ch), Tomas Hruz (tomas.hruz@inf.ethz.ch), Philipp Hoppen
-
Constructor Summary
ConstructorsConstructorDescriptionSetup a clique minimal separator decomposition on undirected graphg. -
Method Summary
Modifier and TypeMethodDescriptiongetAtoms()Get the atoms generated by the decomposition.Get the fill edges generated by the triangulation.Get a map to know for each separator how many components it produces.Get the generators of the separators of the triangulated graph, i.e. all vertices that generate a minimal separator of triangulated graph.getGraph()Get the original graph.getMeo()Get the minimal elimination ordering produced by the triangulation.Get the minimal triangulation of the graph.Get the clique minimal separators.booleanCheck if the graph is chordal.
-
Constructor Details
-
CliqueMinimalSeparatorDecomposition
-
-
Method Details
-
isChordal
public boolean isChordal()Check if the graph is chordal.- Returns:
- true if the graph is chordal, false otherwise.
-
getFillEdges
-
getMinimalTriangulation
-
getGenerators
-
getMeo
Get the minimal elimination ordering produced by the triangulation.- Returns:
- The minimal elimination ordering.
-
getFullComponentCount
-
getAtoms
-
getSeparators
-
getGraph
-