How to Use
Select graph:
- Test: Chordal?
- PEO: Elimination order
- χ=ω: Perfect
Perfect Elimination Ordering
A vertex v is simplicial if N(v) is a clique. PEO: repeatedly remove simplicial vertices. Chordal iff PEO exists. MCS computes PEO in O(n+m): always pick the vertex with most already-numbered neighbors.
Applications
Sparse matrix factorization: Cholesky factor has fill-in pattern = chordal completion. Database theory: acyclic database schemas. Bayesian networks: moral graph is chordal. Extremely important in practice.
Step-by-Step Instructions
- 1Select graph.
- 2Run MCS.
- 3Check PEO.
- 4Find χ=ω.
- 5Apply algorithms.