Class DFSAllPathsFinder<T>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess

public class DFSAllPathsFinder<T> extends DFSPathFinder<T>
Extends DFSPathFinder to discover all paths from a set of root nodes to nodes passing some Predicate.

Note that this code performs work that is potentially exponential in the size of the underlying graph, using exponential space. It most likely won't work even for graphs of moderate size.

See Also: