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
Modifier and TypeMethodDescriptionvoid
findPaths
(GDirectedGraph<V, E> g, V start, V end, Accumulator<List<V>> accumulator, TaskMonitor monitor) void
setStatusListener
(GraphAlgorithmStatusListener<V> listener)
-
Method Details
-
findPaths
void findPaths(GDirectedGraph<V, E> g, V start, V end, Accumulator<List<V>> accumulator, TaskMonitor monitor) throws CancelledException- Throws:
CancelledException
-
setStatusListener
-