Uses of Package
helix.graph.algo

Packages that use helix.graph.algo
helix.graph.algo   
helix.graph.algo.c3part.visitor   
 

Classes in helix.graph.algo used by helix.graph.algo
AbstractCCVisitor
          a basic skeleton for a Visitor following the connected components (CC) of a graph note: you basically need to implement your own enter(), exit() and visit(Vertex v) methods enter() is called when entering a new CC exit() is called when finishing the current CC visit(v) is called when adding v into the current CC in addition you may override the accept(Edge edge) method to select proper edges (by default all existing edges are acceptable)
AbstractRandomGenerator
           
BasicGenerator
           
CCVisitor
           
DeltaClosure.Constraint
          class to define edge constraint
Generator
           
RandomGenerator
           
Visitor
           
 

Classes in helix.graph.algo used by helix.graph.algo.c3part.visitor
AbstractCCVisitor
          a basic skeleton for a Visitor following the connected components (CC) of a graph note: you basically need to implement your own enter(), exit() and visit(Vertex v) methods enter() is called when entering a new CC exit() is called when finishing the current CC visit(v) is called when adding v into the current CC in addition you may override the accept(Edge edge) method to select proper edges (by default all existing edges are acceptable)
CCVisitor
           
Visitor