Uses of Interface
net.innig.collect.GraphWalker

Packages that use GraphWalker
net.innig.collect   
 

Uses of GraphWalker in net.innig.collect
 

Methods in net.innig.collect with parameters of type GraphWalker
static
<N> java.util.Set<java.util.List<N>>
Graphs.findCycles(N initial, GraphWalker<N> walker)
           
static
<N> java.util.Set<N>
Graphs.reachableNodes(N initial, GraphWalker<N> walker)
          Returns the set of all nodes reachable along directed paths from a given node in a given graph.
static
<N> java.util.Set<N>
Graphs.reachableNodesFromSet(java.util.Set<N> initial, GraphWalker<N> walker)
          Returns the set of all nodes reachable along directed paths from a given set of nodes in a given graph.