GraphLab Project

graphlab.library.algorithms.subgraphs
Class InducedSubgraphs

java.lang.Object
  extended by graphlab.library.algorithms.subgraphs.InducedSubgraphs

public class InducedSubgraphs
extends java.lang.Object


Constructor Summary
InducedSubgraphs()
           
 
Method Summary
static
<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
BaseGraph<VertexType,EdgeType>
getEdgeInducedSubgraph(BaseGraph<VertexType,EdgeType> graph, java.util.AbstractList<EdgeType> inducedEdges)
           
static
<VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>>
BaseGraph<VertexType,EdgeType>
getVertexInducedSubgraph(BaseGraph<VertexType,EdgeType> graph, java.util.AbstractList<VertexType> inducedVertices)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InducedSubgraphs

public InducedSubgraphs()
Method Detail

getVertexInducedSubgraph

public static <VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>> BaseGraph<VertexType,EdgeType> getVertexInducedSubgraph(BaseGraph<VertexType,EdgeType> graph,
                                                                                                                                            java.util.AbstractList<VertexType> inducedVertices)

getEdgeInducedSubgraph

public static <VertexType extends BaseVertex,EdgeType extends BaseEdge<VertexType>> BaseGraph<VertexType,EdgeType> getEdgeInducedSubgraph(BaseGraph<VertexType,EdgeType> graph,
                                                                                                                                          java.util.AbstractList<EdgeType> inducedEdges)

GraphLab Project