java.lang.Object
org.jgrapht.alg.cycle.HawickJamesSimpleCycles<V,E>
- Type Parameters:
V- the vertex type.E- the edge type.
- All Implemented Interfaces:
DirectedSimpleCycles<V,E>
Find all simple cycles of a directed graph using the algorithm described by Hawick and James.
See:
K. A. Hawick, H. A. James. Enumerating Circuits and Loops in Graphs with Self-Arcs and
Multiple-Arcs. Computational Science Technical Note CSTN-013, 2008
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate boolean[]private booleanprivate V[]private longprivate intprivate Runnableprivate intprivate ArrayDeque<Integer> private Integer -
Constructor Summary
ConstructorsConstructorDescriptionCreate a simple cycle finder with an unspecified graph.HawickJamesSimpleCycles(Graph<V, E> graph) Create a simple cycle finder for the specified graph. -
Method Summary
Modifier and TypeMethodDescriptionprivate voidprivate booleanvoidThis is the default behaviour of the algorithm.private voidlongCount the number of simple cycles.voidfindSimpleCycles(Consumer<List<V>> consumer) Find the simple cycles of the graph.getGraph()Get the graphprivate voidprivate booleanlimitReached(int steps) voidPrint to the standard output all simple cycles without building a list to keep them, thus avoiding high memory consumption when investigating large and much connected graphs.voidSet the graphvoidsetPathLimit(int pathLimit) Limits the maximum number of edges in a cycle.private voidMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jgrapht.alg.cycle.DirectedSimpleCycles
findSimpleCycles
-
Field Details
-
graph
-
nVertices
private int nVertices -
nCycles
private long nCycles -
start
-
aK
-
b
-
blocked
private boolean[] blocked -
stack
-
iToV
-
vToI
-
pathLimit
private int pathLimit -
hasLimit
private boolean hasLimit -
operation
-
-
Constructor Details
-
HawickJamesSimpleCycles
public HawickJamesSimpleCycles()Create a simple cycle finder with an unspecified graph. -
HawickJamesSimpleCycles
Create a simple cycle finder for the specified graph.- Parameters:
graph- the DirectedGraph in which to find cycles.- Throws:
IllegalArgumentException- if the graph argument isnull.
-
-
Method Details
-
initState
private void initState() -
buildAdjacencyList
-
clearState
private void clearState() -
circuit
-
unblock
-
getGraph
Get the graph- Returns:
- graph
-
setGraph
Set the graph- Parameters:
graph- graph
-
findSimpleCycles
Find the simple cycles of the graph.- Specified by:
findSimpleCyclesin interfaceDirectedSimpleCycles<V,E> - Parameters:
consumer- Consumer that will be called with each cycle found.- Throws:
IllegalArgumentException
-
printSimpleCycles
public void printSimpleCycles()Print to the standard output all simple cycles without building a list to keep them, thus avoiding high memory consumption when investigating large and much connected graphs. -
countSimpleCycles
public long countSimpleCycles()Count the number of simple cycles. It can count up to Long.MAX cycles in a graph.- Returns:
- the number of simple cycles
-
analyzeCircuits
private void analyzeCircuits() -
setPathLimit
public void setPathLimit(int pathLimit) Limits the maximum number of edges in a cycle.- Parameters:
pathLimit- maximum paths.
-
clearPathLimit
public void clearPathLimit()This is the default behaviour of the algorithm. It will keep looking as long as there are paths available. -
limitReached
private boolean limitReached(int steps)
-