Interface IVertexPartition
- All Superinterfaces:
VertexPartition<Integer,Integer>
- All Known Subinterfaces:
IVertexBiPartition
This interface is a specification of VertexPartition for IntGraph.
A partition of a set is a division of the set into a number of disjoint subsets, such that their union is the original set. The sets may also be called 'components' or 'blocks'. We use the term 'block' instead of 'set' to avoid confusion with the get/set convention.
The partition represent a mapping from the vertices of a graph to \(B\) blocks, each block is assigned a number in
range \([0,B)\). To check to which block a vertex is assigned use vertexBlock(int).
- Author:
- Barak Ugav
-
Method Summary
Modifier and TypeMethodDescriptionblockEdges(int block) Get all the edges that are contained in a block.default IntGraphCreate a new graph representing the edges between the blocks.blocksGraph(boolean parallelEdges, boolean selfEdges) Create a new graph representing the edges between the blocks.default IntGraphblockSubGraph(int block) Create a new graph that contains only the vertices and edges that are contained in a block.default IntGraphblockSubGraph(int block, boolean copyVerticesWeights, boolean copyEdgesWeights) Create a new graph that contains only the vertices and edges that are contained in a block with option to copy weights.blockVertices(int block) Get all the vertices that are part of a block.crossEdges(int block1, int block2) Get all the edges that cross between two different blocks.static IVertexPartitionfromArray(IndexGraph g, int[] vertexToBlock, int blocksNum) Create a new vertex partition from an array of vertex-blockIndex mapping.static IVertexPartitionfromMap(IntGraph g, Int2IntMap map) Create a new vertex partition from a vertex-blockIndex map.static IVertexPartitionfromMapping(IntGraph g, IntUnaryOperator mapping) Create a new vertex partition from a vertex-blockIndex mapping function.graph()Get the graph that the partition is defined on.static booleanisPartition(IntGraph g, IntUnaryOperator mapping) Check if a mapping is a valid partition of the vertices of a graph.intvertexBlock(int vertex) Get the block containing a vertex.default intvertexBlock(Integer vertex) Deprecated.Methods inherited from interface com.jgalgo.alg.common.VertexPartition
numberOfBlocks
-
Method Details
-
vertexBlock
int vertexBlock(int vertex) Get the block containing a vertex.- Parameters:
vertex- a vertex in the graph- Returns:
- index of the block containing the vertex, in range \([0, blocksNum)\)
-
vertexBlock
Deprecated.Please usevertexBlock(int)instead to avoid un/boxing.Get the block containing a vertex.- Specified by:
vertexBlockin interfaceVertexPartition<Integer,Integer> - Parameters:
vertex- a vertex in the graph- Returns:
- index of the block containing the vertex, in range \([0, blocksNum)\)
-
blockVertices
Description copied from interface:VertexPartitionGet all the vertices that are part of a block.- Specified by:
blockVerticesin interfaceVertexPartition<Integer,Integer> - Parameters:
block- index of a block- Returns:
- the vertices that are part of the blocks
-
blockEdges
Description copied from interface:VertexPartitionGet all the edges that are contained in a block.An edge \((u,v)\) is contained in a block if both \(u\) and \(v\) are contained in the block.
- Specified by:
blockEdgesin interfaceVertexPartition<Integer,Integer> - Parameters:
block- index of a block- Returns:
- the edges that are contained in the blocks
-
crossEdges
Description copied from interface:VertexPartitionGet all the edges that cross between two different blocks.An edge \((u,v)\) is said to cross between two blocks \(b_1\) and \(b_2\) if \(u\) is contained in \(b_1\) and \(v\) is contained in \(b_2\). Note that if the graph is directed, the cross edges of \((b_1,b_2)\) are different that \((b_2,b_1)\), since the direction of the edge matters.
- Specified by:
crossEdgesin interfaceVertexPartition<Integer,Integer> - Parameters:
block1- the first blockblock2- the second block- Returns:
- the set of edges that cross between the two blocks
-
graph
IntGraph graph()Description copied from interface:VertexPartitionGet the graph that the partition is defined on.- Specified by:
graphin interfaceVertexPartition<Integer,Integer> - Returns:
- the graph that the partition is defined on
-
blockSubGraph
Description copied from interface:VertexPartitionCreate a new graph that contains only the vertices and edges that are contained in a block.The returned graph is an induced subgraph of the original graph, namely it contains only the vertices of the block and edges between them.
The vertex and edge weights are not copied to the new sub graph. For more coping options see
VertexPartition.blockSubGraph(int, boolean, boolean).- Specified by:
blockSubGraphin interfaceVertexPartition<Integer,Integer> - Parameters:
block- index of a block- Returns:
- a new graph that contains only the vertices and edges that are contained in the block
-
blockSubGraph
Description copied from interface:VertexPartitionCreate a new graph that contains only the vertices and edges that are contained in a block with option to copy weights.The returned graph is an induced subgraph of the original graph, namely it contains only the vertices of the block and edges between them.
- Specified by:
blockSubGraphin interfaceVertexPartition<Integer,Integer> - Parameters:
block- index of a blockcopyVerticesWeights- iftruethe vertices weights are copied to the new graphcopyEdgesWeights- iftruethe edges weights are copied to the new graph- Returns:
- a new graph that contains only the vertices and edges that are contained in the block
-
blocksGraph
Description copied from interface:VertexPartitionCreate a new graph representing the edges between the blocks.Each vertex in the new graph represents a block, and there is an edge between two blocks if there is an edge between two original vertices, each in a different block. The vertices of the new graphs will be numbered from \(0\) to \(B-1\), where \(B\) is the number of blocks in the partition. The edges of the new graph will have the identifiers of the original edges.
If there are multiple edges between two blocks, multiple parallel edges will be created in the new graph. Original edges between vertices in the same block will be ignored, instead of copied as self edges in the new graph. For more options regarding self and parallel edges see
VertexPartition.blocksGraph(boolean, boolean).- Specified by:
blocksGraphin interfaceVertexPartition<Integer,Integer> - Returns:
- a new graph where each vertex is a block, and there is an edge between two blocks if there is an edge between two original vertices, each in a different block
-
blocksGraph
Description copied from interface:VertexPartitionCreate a new graph representing the edges between the blocks.Each vertex in the new graph represents a block, and there is an edge between two blocks if there is an edge between two original vertices, each in a different block. The vertices of the new graphs will be numbered from \(0\) to \(B-1\), where \(B\) is the number of blocks in the partition. The edges of the new graph will have the identifiers of the original edges.
- Specified by:
blocksGraphin interfaceVertexPartition<Integer,Integer> - Parameters:
parallelEdges- iftruemultiple parallel edges will be created between two blocks if there are multiple edges between them, iffalseonly a single edge will be created, with identifier of one arbitrary original edge between the blocks. This is also relevant for self edges, ifselfEdgesistrue.selfEdges- iftruefor each original edge between two vertices in the same block, a self edge will be created in the new graph, iffalsesuch edges will be ignored- Returns:
- a new graph where each vertex is a block, and there is an edge between two blocks if there is an edge between two original vertices, each in a different block
-
fromMap
Create a new vertex partition from a vertex-blockIndex map.Note that this function does not validate the input, namely it does not check that the block numbers are all the range [0, maxBlockIndex], and that there are no 'empty' blocks.
- Parameters:
g- the graphmap- a map from vertex to block index- Returns:
- a new vertex partition
-
fromMapping
Create a new vertex partition from a vertex-blockIndex mapping function.Note that this function does not validate the input, namely it does not check that the block numbers are all the range [0, maxBlockIndex], and that there are no 'empty' blocks.
- Parameters:
g- the graphmapping- a mapping function that maps from a vertex to block index- Returns:
- a new vertex partition
-
fromArray
Create a new vertex partition from an array of vertex-blockIndex mapping.This function accept index graphs only, as the mapping is done by the index of the vertices.
Note that this function does not validate the input, namely it does not check that the block numbers are all the range [0, maxBlockIndex], and that there are no 'empty' blocks.
- Parameters:
g- the graphvertexToBlock- an array of size \(n\) where \(n\) is the number of vertices in the graph, in which each element is the block index of the corresponding vertex. The array is not copied, and it is assumed that the caller of this function will not modify the array after calling this functionblocksNum- the number of blocks- Returns:
- a new vertex partition
-
isPartition
Check if a mapping is a valid partition of the vertices of a graph.A valid vertex partition is a mapping from each vertex to an integer number in range [0, numberOfBlocks), in which there are not 'empty blocks', namely at least one vertex is mapped to each block.
- Parameters:
g- the graphmapping- a mapping function that maps from a vertex to block index- Returns:
trueif the mapping is a valid partition of the vertices of the graph,falseotherwise
-
vertexBlock(int)instead to avoid un/boxing.