Package ghidra.graph.algo
Interface FindPathsAlgorithm<V,E extends GEdge<V>>
-
- All Known Implementing Classes:
IterativeFindPathsAlgorithm
,RecursiveFindPathsAlgorithm
public interface FindPathsAlgorithm<V,E extends GEdge<V>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
findPaths(GDirectedGraph<V,E> g, V start, V end, Accumulator<java.util.List<V>> accumulator, TaskMonitor monitor)
void
setStatusListener(GraphAlgorithmStatusListener<V> listener)
-
-
-
Method Detail
-
findPaths
void findPaths(GDirectedGraph<V,E> g, V start, V end, Accumulator<java.util.List<V>> accumulator, TaskMonitor monitor) throws CancelledException
- Throws:
CancelledException
-
setStatusListener
void setStatusListener(GraphAlgorithmStatusListener<V> listener)
-
-