Package javaslam.tjt.graph

Contains a simple graph data structure and methods for search.

See:
          Description

Class Summary
BreadthFirstTraversal An iterator that traverses the nodes of a graph in breadth-first (siblings before children) order.
DepthFirstTraversal An iterator that traverses the nodes of a graph in depth-first (children before siblings) order.
Edge A directed edge in a graph.
Node A node in a graph.
NodeFilter A predicate over graph nodes.
Traversal An iterator that traverses the nodes of a graph.
 

Package javaslam.tjt.graph Description

Contains a simple graph data structure and methods for search.