GraphLab Project

Uses of Interface
graphlab.plugins.main.core.AlgorithmUtils.BFSListener

Packages that use AlgorithmUtils.BFSListener
graphlab.plugins.main.core   
 

Uses of AlgorithmUtils.BFSListener in graphlab.plugins.main.core
 

Methods in graphlab.plugins.main.core with parameters of type AlgorithmUtils.BFSListener
static
<Vertex extends BaseVertex,Edge extends BaseEdge<Vertex>>
void
AlgorithmUtils.BFS(BaseGraph<Vertex,Edge> unRootedTree, AlgorithmUtils.BFSListener<Vertex> listener)
          performs a full BFS on graph, it selects the vertices with minimum degrees as the roots of the resulting forest
static
<Vertex extends BaseVertex,Edge extends BaseEdge<Vertex>>
java.util.ArrayList<Vertex>
AlgorithmUtils.BFS(BaseGraph<Vertex,Edge> unRootedTree, Vertex treeRoot, AlgorithmUtils.BFSListener<Vertex> listener)
          performs a bfs on the given root, this method changes vertex marks, and also marked vertices will not be traversed
static
<Vertex extends BaseVertex,Edge extends BaseEdge<Vertex>>
void
AlgorithmUtils.BFSrun(BaseGraph<Vertex,Edge> unRootedTree, Vertex treeRoot, AlgorithmUtils.BFSListener<Vertex> listener)
          runs a BFS on graph, starting the given vertex as the root
 


GraphLab Project