GraphLab Project

Uses of Interface
graphlab.library.algorithms.AlgorithmInterface

Packages that use AlgorithmInterface
graphlab.library.algorithms   
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   
graphlab.plugins.algorithmanimator.extension   
 

Uses of AlgorithmInterface in graphlab.library.algorithms
 

Subinterfaces of AlgorithmInterface in graphlab.library.algorithms
 interface AutomatedAlgorithm
           
 

Classes in graphlab.library.algorithms that implement AlgorithmInterface
 class Algorithm
           
 

Uses of AlgorithmInterface in graphlab.library.algorithms.coloring
 

Classes in graphlab.library.algorithms.coloring that implement AlgorithmInterface
 class SampleColoring<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
           
 

Uses of AlgorithmInterface in graphlab.library.algorithms.goperators
 

Classes in graphlab.library.algorithms.goperators that implement AlgorithmInterface
 class GraphUnion
           
 

Uses of AlgorithmInterface in graphlab.library.algorithms.graphdecomposition
 

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

Uses of AlgorithmInterface in graphlab.library.algorithms.shortestpath
 

Classes in graphlab.library.algorithms.shortestpath that implement AlgorithmInterface
 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 AlgorithmInterface in graphlab.library.algorithms.sorting
 

Classes in graphlab.library.algorithms.sorting that implement AlgorithmInterface
 class TopologicalSort
           
 

Uses of AlgorithmInterface in graphlab.library.algorithms.spanningtree
 

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

Uses of AlgorithmInterface in graphlab.library.algorithms.subgraphs
 

Classes in graphlab.library.algorithms.subgraphs that implement AlgorithmInterface
 class TestInducedSubgraphs
           
 

Uses of AlgorithmInterface in graphlab.library.algorithms.traversal
 

Classes in graphlab.library.algorithms.traversal that implement AlgorithmInterface
 class BreadthFirstSearch<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
          Description here.
 class DepthFirstSearch<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
           
 

Uses of AlgorithmInterface in graphlab.library.algorithms.util
 

Classes in graphlab.library.algorithms.util that implement AlgorithmInterface
 class AcyclicChecker
          Checks whether a graph is acyclic.
 

Uses of AlgorithmInterface in graphlab.library.algorithms.vertexcover
 

Classes in graphlab.library.algorithms.vertexcover that implement AlgorithmInterface
 class AppVertexCover<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
           
 

Uses of AlgorithmInterface in graphlab.plugins.algorithmanimator
 

Classes in graphlab.plugins.algorithmanimator that implement AlgorithmInterface
 class AcyclicCheckerAnim
           
 class AppVertexCoverAnim
           
 class BellmanFordAnim
           
 class BFSAnim
           
 class BiconnectedComponentsAnim
           
 class DFSAnim
           
 class DijkstraAnim
           
 class KruskalAnim
           
 class More
           
 class PrimAnim
           
 class SampleColoringExtension
           
 class TopologicalSortAnim
           
 

Uses of AlgorithmInterface in graphlab.plugins.algorithmanimator.extension
 

Subinterfaces of AlgorithmInterface in graphlab.plugins.algorithmanimator.extension
 interface AlgorithmExtension
           
 


GraphLab Project