Interface DirectedSimpleCycles<V,E>
- Type Parameters:
V- the vertex type.E- the edge type.
- All Known Implementing Classes:
HawickJamesSimpleCycles, JohnsonSimpleCycles, SzwarcfiterLauerSimpleCycles, TarjanSimpleCycles, TiernanSimpleCycles
public interface DirectedSimpleCycles<V,E>
A common interface for classes implementing algorithms for enumeration of the simple cycles of a
directed graph.
-
Method Summary
Modifier and TypeMethodDescriptionFind the simple cycles of the graph.voidfindSimpleCycles(Consumer<List<V>> consumer) Find the simple cycles of the graph.
-
Method Details
-
findSimpleCycles
-
findSimpleCycles
-