GraphLab Project

Uses of Interface
graphlab.library.event.handlers.PreWorkPostWorkHandler

Packages that use PreWorkPostWorkHandler
graphlab.library   
graphlab.library.algorithms.traversal   
 

Uses of PreWorkPostWorkHandler in graphlab.library
 

Methods in graphlab.library with parameters of type PreWorkPostWorkHandler
 boolean MatrixGraph.depthFirstSearch(VertexType vertex, PreWorkPostWorkHandler<VertexType> handler)
          Runs Depth First Search (DFS) algorithm on the graph starting from vertex vertexId.
 

Uses of PreWorkPostWorkHandler in graphlab.library.algorithms.traversal
 

Methods in graphlab.library.algorithms.traversal with parameters of type PreWorkPostWorkHandler
 boolean DepthFirstSearch.doSearch(VertexType vertex, PreWorkPostWorkHandler<VertexType> handler)
          Calling this will not reset the marks.
 boolean DepthFirstSearch.doSearch(VertexType vertex, PreWorkPostWorkHandler<VertexType> handler, boolean resetMarks)
          Runs Depth First Search (DFS) algorithm on the graph starting from vertex vertexId.
 


GraphLab Project