V - the graph vertex typeE - the graph edge typepublic class BlockCutpointGraph<V,E> extends SimpleGraph<Graph<V,E>,DefaultEdge>
Note: the block-cutpoint graph is not changed when the underlying graph is changed.
DEFAULT_EDGE_WEIGHT| Constructor and Description |
|---|
BlockCutpointGraph(Graph<V,E> graph)
Constructs a Block-Cutpoint graph
|
| Modifier and Type | Method and Description |
|---|---|
Graph<V,E> |
getBlock(V vertex)
Returns the vertex if vertex is a cutpoint, and otherwise returns the block (biconnected
component) containing the vertex.
|
Set<Graph<V,E>> |
getBlocks()
Returns all blocks (biconnected components) in the graph
|
Set<V> |
getCutpoints()
Returns the cutpoints of the initial graph.
|
boolean |
isCutpoint(V vertex)
Returns
true if the vertex is a cutpoint, false otherwise. |
createBuilder, createBuilder, createBuilderaddEdge, addEdge, addVertex, addVertex, clone, containsEdge, containsVertex, createIntrusiveEdgesSpecifics, createSpecifics, degreeOf, edgeSet, edgesOf, getAllEdges, getEdge, getEdgeFactory, getEdgeSource, getEdgeSupplier, getEdgeTarget, getEdgeWeight, getType, getVertexSupplier, incomingEdgesOf, inDegreeOf, isAllowingLoops, isAllowingMultipleEdges, isDirected, isWeighted, outDegreeOf, outgoingEdgesOf, removeEdge, removeEdge, removeVertex, setEdgeSupplier, setEdgeWeight, setVertexSupplier, vertexSetassertVertexExist, containsEdge, equals, hashCode, removeAllEdges, removeAllEdges, removeAllEdges, removeAllVertices, toString, toStringFromSetsfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsEdge, removeAllEdges, removeAllEdges, removeAllVerticespublic Graph<V,E> getBlock(V vertex)
vertex - vertexpublic Set<Graph<V,E>> getBlocks()
public Set<V> getCutpoints()
public boolean isCutpoint(V vertex)
true if the vertex is a cutpoint, false otherwise.vertex - vertex in the initial graph.true if the vertex is a cutpoint, false otherwise.Copyright © 2018. All rights reserved.