Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Interface MaximalCliqueEnumerationAlgorithm<V,E>
-
- Type Parameters:
V
- the graph vertex typeE
- the graph edge type
- All Known Implementing Classes:
BronKerboschCliqueFinder
,DegeneracyBronKerboschCliqueFinder
,PivotBronKerboschCliqueFinder
public interface MaximalCliqueEnumerationAlgorithm<V,E> extends Iterable<Set<V>>
A maximal clique enumeration algorithm.- Author:
- Dimitrios Michail
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<Set<V>>
iterator()
Returns an iterator over all maximal cliques.-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-