GraphLab Project

Uses of Class
graphlab.library.algorithms.Algorithm

Packages that use Algorithm
graphlab.library.algorithms.coloring   
graphlab.library.algorithms.goperators   
graphlab.library.algorithms.graphdecomposition   
graphlab.library.algorithms.shortestpath   
graphlab.library.algorithms.sorting   
graphlab.library.algorithms.spanningtree   
graphlab.library.algorithms.subgraphs   
graphlab.library.algorithms.traversal   
graphlab.library.algorithms.util   
graphlab.library.algorithms.vertexcover   
graphlab.plugins.algorithmanimator   
 

Uses of Algorithm in graphlab.library.algorithms.coloring
 

Subclasses of Algorithm in graphlab.library.algorithms.coloring
 class SampleColoring<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
           
 

Uses of Algorithm in graphlab.library.algorithms.goperators
 

Subclasses of Algorithm in graphlab.library.algorithms.goperators
 class GraphUnion
           
 

Uses of Algorithm in graphlab.library.algorithms.graphdecomposition
 

Subclasses of Algorithm in graphlab.library.algorithms.graphdecomposition
 class BiconnectedComponents<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
          This Method find the biconnected components of a graph.
 

Uses of Algorithm in graphlab.library.algorithms.shortestpath
 

Subclasses of Algorithm in graphlab.library.algorithms.shortestpath
 class AcyclicSP<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>,GraphType extends BaseGraph<VertexType,EdgeType>>
           
 class BellmanFord<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
          This method finds the shortest path from a source vertex v, to all vertices of the graph.
 class Dijkstra<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
          This method finds the shortest path from a vertex to all vertices of a graph.
 class Johnson<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>,GraphType extends BaseGraph<VertexType,EdgeType>>
          This Algorithm computes the lenght of the shortest path between any two arbitrary vertices.
 

Uses of Algorithm in graphlab.library.algorithms.sorting
 

Subclasses of Algorithm in graphlab.library.algorithms.sorting
 class TopologicalSort
           
 

Uses of Algorithm in graphlab.library.algorithms.spanningtree
 

Subclasses of Algorithm in graphlab.library.algorithms.spanningtree
 class Kruskal
           
 class Prim<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
          Implementation of Prim algorithm to find minimum spanning tree.
 

Uses of Algorithm in graphlab.library.algorithms.subgraphs
 

Subclasses of Algorithm in graphlab.library.algorithms.subgraphs
 class TestInducedSubgraphs
           
 

Uses of Algorithm in graphlab.library.algorithms.traversal
 

Subclasses of Algorithm in graphlab.library.algorithms.traversal
 class BreadthFirstSearch<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
          Description here.
 class DepthFirstSearch<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
           
 

Uses of Algorithm in graphlab.library.algorithms.util
 

Subclasses of Algorithm in graphlab.library.algorithms.util
 class AcyclicChecker
          Checks whether a graph is acyclic.
 

Methods in graphlab.library.algorithms.util with parameters of type Algorithm
static void LibraryUtils.algorithmStep(Algorithm a, java.lang.String message)
           
static void EventUtils.algorithmStep(Algorithm a, java.lang.String message)
          dispatches an event in a which means that there is a Algorithm Step point here
 

Uses of Algorithm in graphlab.library.algorithms.vertexcover
 

Subclasses of Algorithm in graphlab.library.algorithms.vertexcover
 class AppVertexCover<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
           
 

Uses of Algorithm in graphlab.plugins.algorithmanimator
 

Subclasses of Algorithm in graphlab.plugins.algorithmanimator
 class AcyclicCheckerAnim
           
 class AppVertexCoverAnim
           
 class BellmanFordAnim
           
 class BFSAnim
           
 class BiconnectedComponentsAnim
           
 class DFSAnim
           
 class DijkstraAnim
           
 class KruskalAnim
           
 class PrimAnim
           
 class SampleColoringExtension
           
 class TopologicalSortAnim
           
 


GraphLab Project