GraphLab Project

Uses of Interface
graphlab.library.algorithms.AutomatedAlgorithm

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.coloring
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.graphdecomposition
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.shortestpath
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.sorting
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.spanningtree
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.subgraphs
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.traversal
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.util
 

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

Uses of AutomatedAlgorithm in graphlab.library.algorithms.vertexcover
 

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

Uses of AutomatedAlgorithm in graphlab.plugins.algorithmanimator
 

Classes in graphlab.plugins.algorithmanimator that implement AutomatedAlgorithm
 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 AutomatedAlgorithm in graphlab.plugins.algorithmanimator.core
 

Methods in graphlab.plugins.algorithmanimator.core that return AutomatedAlgorithm
abstract  AutomatedAlgorithm SimpleAlgorithmAnimator.getAlgorithm()
           
 

Methods in graphlab.plugins.algorithmanimator.core with parameters of type AutomatedAlgorithm
 void AlgorithmAnimator.animateAlgorithm(AutomatedAlgorithm aa)
          The main method, Animates an algorithm
 

Uses of AutomatedAlgorithm in graphlab.plugins.algorithmanimator.extension
 

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


GraphLab Project