Package ghidra.graph.algo
Class IterativeFindPathsAlgorithm<V,E extends GEdge<V>>
- java.lang.Object
 - 
- ghidra.graph.algo.IterativeFindPathsAlgorithm<V,E>
 
 
- 
- Type Parameters:
 V- the vertex typeE- the edge type
- All Implemented Interfaces:
 FindPathsAlgorithm<V,E>
public class IterativeFindPathsAlgorithm<V,E extends GEdge<V>> extends java.lang.Object implements FindPathsAlgorithm<V,E>
Finds all paths between two vertices for a given graph.Note: this algorithm is based on the
JohnsonCircuitsAlgorithm, modified to be iterative instead of recursive. 
- 
- 
Constructor Summary
Constructors Constructor Description IterativeFindPathsAlgorithm() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfindPaths(GDirectedGraph<V,E> g, V start, V end, Accumulator<java.util.List<V>> accumulator, TaskMonitor monitor)voidsetStatusListener(GraphAlgorithmStatusListener<V> listener) 
 - 
 
- 
- 
Method Detail
- 
setStatusListener
public void setStatusListener(GraphAlgorithmStatusListener<V> listener)
- Specified by:
 setStatusListenerin interfaceFindPathsAlgorithm<V,E extends GEdge<V>>
 
- 
findPaths
public void findPaths(GDirectedGraph<V,E> g, V start, V end, Accumulator<java.util.List<V>> accumulator, TaskMonitor monitor) throws CancelledException
- Specified by:
 findPathsin interfaceFindPathsAlgorithm<V,E extends GEdge<V>>- Throws:
 CancelledException
 
 - 
 
 -