GraphLab Project

Uses of Interface
graphlab.library.genericcloners.EdgeVertexCopier

Packages that use EdgeVertexCopier
graphlab.library   
graphlab.library.algorithms.shortestpath   
graphlab.library.algorithms.spanningtree   
graphlab.library.genericcloners   
graphlab.plugins.commandline.commands   
 

Uses of EdgeVertexCopier in graphlab.library
 

Methods in graphlab.library with parameters of type EdgeVertexCopier
 BaseGraph<VertexType,EdgeType> ListGraph.copy(EdgeVertexCopier<VertexType,EdgeType> gc)
           
abstract  BaseGraph<VertexType,EdgeType> BaseGraph.copy(EdgeVertexCopier<VertexType,EdgeType> gc)
          Creates a clone of the current graph using the GraphConverter object which is responsible for duplication of the graph elements (edges and vertices).
 BaseGraph<VertexType,EdgeType> MatrixGraph.copy(EdgeVertexCopier<VertexType,EdgeType> gc)
           
 

Uses of EdgeVertexCopier in graphlab.library.algorithms.shortestpath
 

Constructors in graphlab.library.algorithms.shortestpath with parameters of type EdgeVertexCopier
AcyclicSP(EdgeVertexCopier<VertexType,EdgeType> gc)
           
 

Uses of EdgeVertexCopier in graphlab.library.algorithms.spanningtree
 

Constructors in graphlab.library.algorithms.spanningtree with parameters of type EdgeVertexCopier
Prim(BaseGraph<VertexType,EdgeType> graph, EdgeVertexCopier<VertexType,EdgeType> gc)
          Constructor of the Prim algorithm.
 

Uses of EdgeVertexCopier in graphlab.library.genericcloners
 

Classes in graphlab.library.genericcloners that implement EdgeVertexCopier
 class BaseEdgeVertexCopier
           
 

Uses of EdgeVertexCopier in graphlab.plugins.commandline.commands
 

Classes in graphlab.plugins.commandline.commands that implement EdgeVertexCopier
 class Copier
           
 


GraphLab Project