-
- 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.- Author:
- Nikolay Ognyanov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<List<V>>findSimpleCycles()Find the simple cycles of the graph.voidfindSimpleCycles(Consumer<List<V>> consumer)Find the simple cycles of the graph.
-