- All Implemented Interfaces:
- Serializable,- Graph<Integer,- Integer> 
Integer edges represented using quasi-succinct data
 structures.
 
 The graph representation of this implementation is similar to that of
 SparseIntDirectedGraph: nodes and edges are initial intervals of the natural numbers.
 Under the hood, however, this class uses the Elias–Fano representation of monotone sequences to represent the positions of ones in the
 (linearized) adjacency matrix of the graph. Instances are serializable and thread safe.
 
 If the vertex set is compact (i.e., vertices are numbered from 0 consecutively), space usage will
 be close to twice the information-theoretical lower bound (typically, a few times smaller than a
 SparseIntDirectedGraph). If you drop
 support for incoming edges the space will close to the information-theoretical lower bound .
 
Enumeration of outgoing edges is quite fast, but enumeration of incoming edges is very slow. Adjacency tests are very fast and happen in almost constant time.
 SuccinctDirectedGraph is a much faster implementation with a similar footprint using
 IntIntPair as edge type. Please read the class
 documentation for more information.
- Author:
- Sebastiano Vigna
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class org.jgrapht.sux4j.AbstractSuccinctDirectedGraphAbstractSuccinctDirectedGraph.CumulativeDegrees, AbstractSuccinctDirectedGraph.CumulativeSuccessors<E>
- 
Field SummaryFields inherited from class org.jgrapht.sux4j.AbstractSuccinctGraphm, n, sourceShift, targetMask, UNMODIFIABLEFields inherited from interface org.jgrapht.GraphDEFAULT_EDGE_WEIGHT
- 
Constructor SummaryConstructorsConstructorDescriptionSuccinctIntDirectedGraph(int numVertices, int numEdges, Supplier<Stream<Pair<Integer, Integer>>> edges) Creates a new immutable succinct directed graph from a supplier of streams of edges, supporting both outgoing and incoming edges.SuccinctIntDirectedGraph(int numVertices, int numEdges, Supplier<Stream<Pair<Integer, Integer>>> edges, boolean incomingEdgesSupport) Creates a new immutable succinct directed graph from a supplier of streams of edges, choosing whether to support incoming edges.SuccinctIntDirectedGraph(int numVertices, List<Pair<Integer, Integer>> edges) Creates a new immutable succinct directed graph from an edge list, supporting both outgoing and incoming edges.SuccinctIntDirectedGraph(int numVertices, List<Pair<Integer, Integer>> edges, boolean incomingEdgesSupport) Creates a new immutable succinct directed graph from an edge list, choosing whether to support incoming edges.SuccinctIntDirectedGraph(Graph<Integer, E> graph) Creates a new immutable succinct directed graph from a given directed graph, supporting both outgoing and incoming edges.SuccinctIntDirectedGraph(Graph<Integer, E> graph, boolean incomingEdgesSupport) Creates a new immutable succinct directed graph from a given directed graph, choosing whether to support incoming edges.
- 
Method SummaryModifier and TypeMethodDescriptionprotected booleanEnsures that the specified edge exists in this graph, or else throws exception.booleanReturnstrueif this graph contains the specified edge.booleancontainsEdge(Integer sourceVertex, Integer targetVertex) Returnstrueif and only if this graph contains an edge going from the source vertex to the target vertex.edgeSet()Returns a set of the edges contained in this graph.it.unimi.dsi.fastutil.ints.IntSetReturns a set of all edges touching the specified vertex.Returns an edge connecting source vertex to target vertex if such vertices and such edge exist in this graph.Returns the source vertex of an edge.Returns the target vertex of an edge.it.unimi.dsi.fastutil.ints.IntSetincomingEdgesOf(Integer target) Returns a set of all edges incoming into the specified vertex.intinDegreeOf(Integer vertex) Returns the "in degree" of the specified vertex.Access the graph using theGraphIterablesinterface.intoutDegreeOf(Integer vertex) Returns the "out degree" of the specified vertex.it.unimi.dsi.fastutil.ints.IntSetoutgoingEdgesOf(Integer vertex) Returns a set of all edges outgoing from the specified vertex.Methods inherited from class org.jgrapht.sux4j.AbstractSuccinctDirectedGraphdegreeOf, getTypeMethods inherited from class org.jgrapht.sux4j.AbstractSuccinctGraphaddEdge, addEdge, addVertex, addVertex, assertVertexExist, containsVertex, getAllEdges, getEdgeSupplier, getEdgeWeight, getVertexSupplier, removeEdge, removeEdge, removeVertex, setEdgeWeight, vertexSetMethods inherited from class org.jgrapht.graph.AbstractGraphequals, hashCode, removeAllEdges, removeAllEdges, removeAllEdges, removeAllVertices, toString, toStringFromSetsMethods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.jgrapht.GraphsetEdgeWeight
- 
Constructor Details- 
SuccinctIntDirectedGraphCreates a new immutable succinct directed graph from a given directed graph, choosing whether to support incoming edges.- Type Parameters:
- E- the graph edge type
- Parameters:
- graph- a directed graph: for good results, vertices should be numbered consecutively starting from 0.
- incomingEdgesSupport- whether to support incoming edges or not.
 
- 
SuccinctIntDirectedGraphCreates a new immutable succinct directed graph from a given directed graph, supporting both outgoing and incoming edges.- Type Parameters:
- E- the graph edge type
- Parameters:
- graph- a directed graph: for good results, vertices should be numbered consecutively starting from 0.
 
- 
SuccinctIntDirectedGraphpublic SuccinctIntDirectedGraph(int numVertices, List<Pair<Integer, Integer>> edges, boolean incomingEdgesSupport) Creates a new immutable succinct directed graph from an edge list, choosing whether to support incoming edges.This constructor just builds a SparseIntDirectedGraphand delegates to the main constructor.- Parameters:
- numVertices- the number of vertices.
- edges- the edge list.
- incomingEdgesSupport- whether to support incoming edges or not.
- See Also:
 
- 
SuccinctIntDirectedGraphCreates a new immutable succinct directed graph from an edge list, supporting both outgoing and incoming edges.This constructor just builds a SparseIntDirectedGraphand delegates to the main constructor.- Parameters:
- numVertices- the number of vertices.
- edges- the edge list.
- See Also:
 
- 
SuccinctIntDirectedGraphpublic SuccinctIntDirectedGraph(int numVertices, int numEdges, Supplier<Stream<Pair<Integer, Integer>>> edges, boolean incomingEdgesSupport) Creates a new immutable succinct directed graph from a supplier of streams of edges, choosing whether to support incoming edges.This constructor just builds a SparseIntDirectedGraphand delegates to the main constructor.- Parameters:
- numVertices- the number of vertices.
- numEdges- the number of edges.
- edges- a supplier of streams of edges.
- incomingEdgesSupport- whether to support incoming edges or not.
- See Also:
 
- 
SuccinctIntDirectedGraphpublic SuccinctIntDirectedGraph(int numVertices, int numEdges, Supplier<Stream<Pair<Integer, Integer>>> edges) Creates a new immutable succinct directed graph from a supplier of streams of edges, supporting both outgoing and incoming edges.This constructor just builds a SparseIntDirectedGraphand delegates to the main constructor.- Parameters:
- numVertices- the number of vertices.
- numEdges- the number of edges.
- edges- a supplier of streams of edges.
- See Also:
 
 
- 
- 
Method Details- 
containsEdgeDescription copied from interface:GraphReturnstrueif this graph contains the specified edge. More formally, returnstrueif and only if this graph contains an edgee2such thate.equals(e2). If the specified edge isnullreturnsfalse.- Specified by:
- containsEdgein interface- Graph<Integer,- Integer> 
- Parameters:
- e- edge whose presence in this graph is to be tested.
- Returns:
- trueif this graph contains the specified edge.
 
- 
edgeSetDescription copied from interface:GraphReturns a set of the edges contained in this graph. The set is backed by the graph, so changes to the graph are reflected in the set. If the graph is modified while an iteration over the set is in progress, the results of the iteration are undefined.The graph implementation may maintain a particular set ordering (e.g. via LinkedHashSet) for deterministic iteration, but this is not required. It is the responsibility of callers who rely on this behavior to only use graph implementations which support it.
- 
edgesOfDescription copied from interface:GraphReturns a set of all edges touching the specified vertex. If no edges are touching the specified vertex returns an empty set.
- 
inDegreeOfDescription copied from interface:GraphReturns the "in degree" of the specified vertex.The "in degree" of a vertex in a directed graph is the number of inward directed edges from that vertex. See http://mathworld.wolfram.com/Indegree.html. In the case of undirected graphs this method returns the number of edges touching the vertex. Edges with same source and target vertices (self-loops) are counted twice. - Specified by:
- inDegreeOfin interface- Graph<Integer,- Integer> 
- Parameters:
- vertex- vertex whose degree is to be calculated.
- Returns:
- the degree of the specified vertex.
 
- 
incomingEdgesOfDescription copied from interface:GraphReturns a set of all edges incoming into the specified vertex.In the case of undirected graphs this method returns all edges touching the vertex, thus, some of the returned edges may have their source and target vertices in the opposite order. - Specified by:
- incomingEdgesOfin interface- Graph<Integer,- Integer> 
- Parameters:
- target- the vertex for which the list of incoming edges to be returned.
- Returns:
- a set of all edges incoming into the specified vertex.
 
- 
outDegreeOfDescription copied from interface:GraphReturns the "out degree" of the specified vertex.The "out degree" of a vertex in a directed graph is the number of outward directed edges from that vertex. See http://mathworld.wolfram.com/Outdegree.html. In the case of undirected graphs this method returns the number of edges touching the vertex. Edges with same source and target vertices (self-loops) are counted twice. - Specified by:
- outDegreeOfin interface- Graph<Integer,- Integer> 
- Parameters:
- vertex- vertex whose degree is to be calculated.
- Returns:
- the degree of the specified vertex.
 
- 
outgoingEdgesOfDescription copied from interface:GraphReturns a set of all edges outgoing from the specified vertex.In the case of undirected graphs this method returns all edges touching the vertex, thus, some of the returned edges may have their source and target vertices in the opposite order. - Specified by:
- outgoingEdgesOfin interface- Graph<Integer,- Integer> 
- Parameters:
- vertex- the vertex for which the list of outgoing edges to be returned.
- Returns:
- a set of all edges outgoing from the specified vertex.
 
- 
getEdgeSourceDescription copied from interface:GraphReturns the source vertex of an edge. For an undirected graph, source and target are distinguishable designations (but without any mathematical meaning).- Specified by:
- getEdgeSourcein interface- Graph<Integer,- Integer> 
- Parameters:
- e- edge of interest
- Returns:
- source vertex
 
- 
getEdgeTargetDescription copied from interface:GraphReturns the target vertex of an edge. For an undirected graph, source and target are distinguishable designations (but without any mathematical meaning).- Specified by:
- getEdgeTargetin interface- Graph<Integer,- Integer> 
- Parameters:
- e- edge of interest
- Returns:
- target vertex
 
- 
getEdgeDescription copied from interface:GraphReturns an edge connecting source vertex to target vertex if such vertices and such edge exist in this graph. Otherwise returnsnull. If any of the specified vertices isnullreturnsnullIn undirected graphs, the returned edge may have its source and target vertices in the opposite order. 
- 
containsEdgeDescription copied from interface:GraphReturnstrueif and only if this graph contains an edge going from the source vertex to the target vertex. In undirected graphs the same result is obtained when source and target are inverted. If any of the specified vertices does not exist in the graph, or if isnull, returnsfalse.- Specified by:
- containsEdgein interface- Graph<Integer,- Integer> 
- Overrides:
- containsEdgein class- AbstractGraph<Integer,- Integer> 
- Parameters:
- sourceVertex- source vertex of the edge.
- targetVertex- target vertex of the edge.
- Returns:
- trueif this graph contains the specified edge.
- See Also:
 
- 
assertEdgeExistEnsures that the specified edge exists in this graph, or else throws exception.- Parameters:
- e- edge
- Returns:
- trueif this assertion holds.
- Throws:
- IllegalArgumentException- if specified edge does not exist in this graph.
 
- 
iterablesDescription copied from interface:GraphAccess the graph using theGraphIterablesinterface. This allows accessing graphs without the restrictions imposed by 32-bit arithmetic. Moreover, graph implementations are free to implement this interface without explicitly materializing intermediate results.
 
-