Interface IntGraphFactory
- All Superinterfaces:
GraphFactory<Integer,Integer>
- All Known Subinterfaces:
IndexGraphFactory
IntGraph objects.
The factory can be used to create new empty graphs, with different options and capabilities. Few methods are available to optimize the graph implementation choice. The factory can also be used to create a copy of an existing graphs, with the same vertices and edges, with/without copying the vertices/edges weights.
Both the graph factory and IntGraphBuilder are used to create new graphs. The difference is that vertices and
edges can be added to the builder, which is then used to construct non empty graphs, while the factory is only used
to choose a graph implementation and create an empty graph.
This interface is a specification of GraphFactory for IntGraph.
- Author:
- Barak Ugav
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.jgalgo.graph.GraphFactory
GraphFactory.Hint -
Method Summary
Modifier and TypeMethodDescriptionaddHint(GraphFactory.Hint hint) Add a hint to this factory.default IntGraphFactoryChange the config of this factory so that the built graphs will support parallel edges.allowParallelEdges(boolean parallelEdges) Determine if graphs built by this factory should be support parallel edges.default IntGraphFactoryChange the config of this factory so that the built graphs will support self edges.allowSelfEdges(boolean selfEdges) Determine if graphs built by this factory should be support self edges.static IntGraphFactorydirected()Create a directed int graph factory.expectedEdgesNum(int expectedEdgesNum) Set the expected number of edges that will exist in the graph.expectedVerticesNum(int expectedVerticesNum) Set the expected number of vertices that will exist in the graph.Create a new graph builder with the factory parameters.default IntGraphBuilderCreate a new graph builder with the factory parameters initialized with an existing graph vertices and edges, without copying the weights.newBuilderCopyOf(Graph<Integer, Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights) Create a new graph builder with the factory parameters initialized with an existing graph vertices and edges, with/without copying the weights.default IntGraphCreate a copy of a given graph, with the same vertices and edges, without copying weights.Create a copy of a given graph, with the same vertices and edges, with/without copying weights.newGraph()Create a new empty graph.default IntGraphCreate a new immutable copy of a given graph, with the same vertices and edges, without copying weights.newImmutableCopyOf(Graph<Integer, Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights) Create a new immutable copy of a given graph, with the same vertices and edges, with/without copying weights.static IntGraphFactorynewInstance(boolean directed) Create a new un/directed int graph factory.removeHint(GraphFactory.Hint hint) Remove a hint from this factory.setDirected(boolean directed) Determine if graphs built by this factory should be directed.default IntGraphFactorysetEdgeBuilder(IdBuilder<Integer> edgeBuilder) Set the edge builder used by the built graph(s).setEdgeFactory(Supplier<? extends IdBuilder<Integer>> edgeFactory) Set the edge factory which create builders for the edges of the built graph(s).default IntGraphFactory[TL;DR Don't call me!]default IntGraphFactorysetVertexBuilder(IdBuilder<Integer> vertexBuilder) Set the vertex builder used by the built graph(s).setVertexFactory(Supplier<? extends IdBuilder<Integer>> vertexFactory) Set the vertex factory which create builders for the vertices of the built graph(s).static IntGraphFactoryCreate an undirected int graph factory.
-
Method Details
-
newGraph
IntGraph newGraph()Description copied from interface:GraphFactoryCreate a new empty graph.- Specified by:
newGraphin interfaceGraphFactory<Integer,Integer> - Returns:
- a new graph with the factory options
-
newCopyOf
Description copied from interface:GraphFactoryCreate a copy of a given graph, with the same vertices and edges, without copying weights.An identical copy of the given graph will be created, with the same vertices and edges, without copying the vertices/edges weights. The returned Graph will always be mutable, with no side affects on the original graph.
Differing from
Graph.copy(), the capabilities of the new graph are determined by the factory configuration, rather than copied from the given graph. Note for example that if the factory chooses to use an implementation that does not support self edges (ifGraphFactory.allowSelfEdges(boolean)was not called withtrue), attempting to create a copy of a graph that does contains self edges will result in an exception.For an immutable copy of a graph, see
GraphFactory.newImmutableCopyOf(Graph, boolean, boolean).- Specified by:
newCopyOfin interfaceGraphFactory<Integer,Integer> - Parameters:
g- the original graph to copy- Returns:
- an identical copy of the given graph, with the same vertices and edges, without the original graph weights
-
newCopyOf
Description copied from interface:GraphFactoryCreate a copy of a given graph, with the same vertices and edges, with/without copying weights.An identical copy of the given graph will be created, with the same vertices and edges, with/without copying the vertices/edges weights. The returned Graph will always be mutable, with no side affects on the original graph.
Differing from
Graph.copy(boolean, boolean), the capabilities of the new graph are determined by the factory configuration, rather than copied from the given graph. Note for example that if the factory chooses to use an implementation that does not support self edges (ifGraphFactory.allowSelfEdges(boolean)was not called withtrue), attempting to create a copy of a graph that does contains self edges will result in an exception.For an immutable copy of a graph, see
GraphFactory.newImmutableCopyOf(Graph, boolean, boolean).- Specified by:
newCopyOfin interfaceGraphFactory<Integer,Integer> - Parameters:
g- the original graph to copycopyVerticesWeights- iftrue, the weights of the vertices will be copied to the new graphcopyEdgesWeights- iftrue, the weights of the edges will be copied to the new graph- Returns:
- an identical copy of the given graph, with the same vertices and edges, with/without the original graph weights
-
newImmutableCopyOf
Description copied from interface:GraphFactoryCreate a new immutable copy of a given graph, with the same vertices and edges, without copying weights.An identical copy of the given graph will be created, with the same vertices and edges, without copying the vertices/edges weights. The returned Graph will be immutable, with no side affects on the original graph.
Differing from
Graph.immutableCopy(), the capabilities of the new graph are determined by the factory configuration, rather than copied from the given graph. Note for example that if the factory chooses to use an implementation that does not support self edges (ifGraphFactory.allowSelfEdges(boolean)was not called withtrue), attempting to create a copy of a graph that does contains self edges will result in an exception.For a mutable copy of a graph, see
GraphFactory.newCopyOf(Graph, boolean, boolean).- Specified by:
newImmutableCopyOfin interfaceGraphFactory<Integer,Integer> - Parameters:
g- the original graph to copy- Returns:
- an identical immutable copy of the given graph, with the same vertices and edges, without the original graph weights
-
newImmutableCopyOf
IntGraph newImmutableCopyOf(Graph<Integer, Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights) Description copied from interface:GraphFactoryCreate a new immutable copy of a given graph, with the same vertices and edges, with/without copying weights.An identical copy of the given graph will be created, with the same vertices and edges, with/without copying the vertices/edges weights. The returned Graph will be immutable, with no side affects on the original graph.
Differing from
Graph.immutableCopy(boolean, boolean), the capabilities of the new graph are determined by the factory configuration, rather than copied from the given graph. Note for example that if the factory chooses to use an implementation that does not support self edges (ifGraphFactory.allowSelfEdges(boolean)was not called withtrue), attempting to create a copy of a graph that does contains self edges will result in an exception.For a mutable copy of a graph, see
GraphFactory.newCopyOf(Graph, boolean, boolean).- Specified by:
newImmutableCopyOfin interfaceGraphFactory<Integer,Integer> - Parameters:
g- the original graph to copycopyVerticesWeights- iftrue, the weights of the vertices will be copied to the new graphcopyEdgesWeights- iftrue, the weights of the edges will be copied to the new graph- Returns:
- an identical immutable copy of the given graph, with the same vertices and edges, without the original graph weights
-
newBuilder
IntGraphBuilder newBuilder()Description copied from interface:GraphFactoryCreate a new graph builder with the factory parameters.The created builder can be used to add vertices and edges, and then build a (mutable or immutable) non empty graph, differing from the factory which only builds empty graphs. The capabilities such as un/directed, support of self edges, support of parallel edges, and hints such as expected number of vertices and edges, other hints, etc. are copied from the factory to the builder.
- Specified by:
newBuilderin interfaceGraphFactory<Integer,Integer> - Returns:
- a new graph builder with the factory parameters
-
newBuilderCopyOf
Description copied from interface:GraphFactoryCreate a new graph builder with the factory parameters initialized with an existing graph vertices and edges, without copying the weights.If the given graph is directed, the new builder will build directed graphs, and similarly for undirected graphs.
- Specified by:
newBuilderCopyOfin interfaceGraphFactory<Integer,Integer> - Parameters:
g- a graph- Returns:
- a graph builder with the factory parameters initialized with the given graph vertices and edges, without the original graph vertices/edges weights.
-
newBuilderCopyOf
IntGraphBuilder newBuilderCopyOf(Graph<Integer, Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights) Description copied from interface:GraphFactoryCreate a new graph builder with the factory parameters initialized with an existing graph vertices and edges, with/without copying the weights.If the given graph is directed, the new builder will build directed graphs, and similarly for undirected graphs.
- Specified by:
newBuilderCopyOfin interfaceGraphFactory<Integer,Integer> - Parameters:
g- a graphcopyVerticesWeights- iftrue, the weights of the vertices will be copied from the graph to the buildercopyEdgesWeights- iftrue, the weights of the edges will be copied from the graph to the builder- Returns:
- a graph builder with the factory parameters initialized with the given graph vertices and edges, with/without the original graph vertices/edges weights.
-
setDirected
Description copied from interface:GraphFactoryDetermine if graphs built by this factory should be directed.Usually the factory will be created using either
GraphFactory.directed()orGraphFactory.undirected(), and there will be no need to call this method. However, it is sometimes useful use the same factory to build both directed and undirected graphs, and this method can be used to change the factory configuration. For example, a factory can be passed to a random graph generator, which can generated both directed and undirected graphs, depending on the generator parameters.- Specified by:
setDirectedin interfaceGraphFactory<Integer,Integer> - Parameters:
directed- iftruegraphs built by this factory will be directed, else they will be undirected- Returns:
- this factory
-
allowSelfEdges
Description copied from interface:GraphFactoryChange the config of this factory so that the built graphs will support self edges.By default, graphs built by this factory will not support self edges.
- Specified by:
allowSelfEdgesin interfaceGraphFactory<Integer,Integer> - Returns:
- this factory
-
allowSelfEdges
Description copied from interface:GraphFactoryDetermine if graphs built by this factory should be support self edges.By default, graphs built by this factory will not support self edges.
- Specified by:
allowSelfEdgesin interfaceGraphFactory<Integer,Integer> - Parameters:
selfEdges- iftruegraphs built by this factory will support self edges, else they will not- Returns:
- this factory
-
allowParallelEdges
Description copied from interface:GraphFactoryChange the config of this factory so that the built graphs will support parallel edges.By default, graphs built by this factory will support parallel edges. The reason is that in order to enforce no parallel edges are added to the graph, an efficient lookup of edges (keyed by an edge's vertices) is required, which is an operation most graph algorithms do not use and therefore most implementations are not optimized for. See
GraphFactory.Hint.FastEdgeLookup.- Specified by:
allowParallelEdgesin interfaceGraphFactory<Integer,Integer> - Returns:
- this factory
-
allowParallelEdges
Description copied from interface:GraphFactoryDetermine if graphs built by this factory should be support parallel edges.By default, graphs built by this factory will support parallel edges. The reason is that in order to enforce no parallel edges are added to the graph, an efficient lookup of edges (keyed by an edge's vertices) is required, which is an operation most graph algorithms do not use and therefore most implementations are not optimized for. See
GraphFactory.Hint.FastEdgeLookup.- Specified by:
allowParallelEdgesin interfaceGraphFactory<Integer,Integer> - Parameters:
parallelEdges- iftruegraphs built by this factory will support parallel edges, else they will not- Returns:
- this factory
-
expectedVerticesNum
Description copied from interface:GraphFactorySet the expected number of vertices that will exist in the graph.- Specified by:
expectedVerticesNumin interfaceGraphFactory<Integer,Integer> - Parameters:
expectedVerticesNum- the expected number of vertices in the graph- Returns:
- this factory
-
expectedEdgesNum
Description copied from interface:GraphFactorySet the expected number of edges that will exist in the graph.- Specified by:
expectedEdgesNumin interfaceGraphFactory<Integer,Integer> - Parameters:
expectedEdgesNum- the expected number of edges in the graph- Returns:
- this factory
-
setVertexBuilder
Set the vertex builder used by the built graph(s).The vertex builder is used by graphs to create new vertices when the user does not provide them explicitly, see
Graph.addVertex(). The same vertex builder will be used for all graphs built by this factory, and graphs built byGraphBuildercreated by this factory. If a different instance of a vertex builder is required for each graph, consider usingGraphFactory.setVertexFactory(Supplier)instead.For some types there is a default vertex builder, see
IdBuilder.defaultBuilder(Class).By default, graphs built by this factory will not have a vertex builder, namely a
nullvertex builder.By default, graphs created by this factory will have a vertex builder that uses a counter and assign the next id to each new vertex by incrementing the counter until there is no vertex with that id.
- Specified by:
setVertexBuilderin interfaceGraphFactory<Integer,Integer> - Parameters:
vertexBuilder- the vertex builder, ornullif no vertex builder should be used- Returns:
- this factory
-
setVertexFactory
Description copied from interface:GraphFactorySet the vertex factory which create builders for the vertices of the built graph(s).The vertex builder is used by graphs to create new vertices when the user does not provide them explicitly, see
Graph.addVertex(). The factory will be used to insatiate a new vertex builder for each graph built by this factory, and graphs built byGraphBuildercreated by this factory. If the same vertex builder can be used for all graphs, consider usingGraphFactory.setVertexBuilder(IdBuilder)instead.For some types there is a default vertex factory, see
IdBuilder.defaultFactory(Class).By default, graphs built by this factory will not have a vertex builder, namely a
nullvertex builder.- Specified by:
setVertexFactoryin interfaceGraphFactory<Integer,Integer> - Parameters:
vertexFactory- the vertex factory, ornullif no vertex builder should be used- Returns:
- this factory
-
setEdgeBuilder
Set the edge builder used by the built graph(s).The edge builder is used by graphs to create new edges when the user does not provide them explicitly, see
Graph.addEdge(Object, Object). The same edge builder will be used for all graphs built by this factory, and graphs built byGraphBuildercreated by this factory. If a different instance of an edge builder is required for each graph, consider usingGraphFactory.setEdgeFactory(Supplier)instead.For some types there is a default edge builder, see
IdBuilder.defaultBuilder(Class).By default, graphs built by this factory will not have an edge builder, namely a
nulledge builder.By default, graphs created by this factory will have an edge builder that uses a counter and assign the next id to each new edge by incrementing the counter until there is no edge with that id.
- Specified by:
setEdgeBuilderin interfaceGraphFactory<Integer,Integer> - Parameters:
edgeBuilder- the edge builder, ornullif no edge builder should be used- Returns:
- this factory
-
setEdgeFactory
Description copied from interface:GraphFactorySet the edge factory which create builders for the edges of the built graph(s).The edge builder is used by graphs to create new edges when the user does not provide them explicitly, see
Graph.addEdge(Object, Object). The factory will be used to insatiate a new edge builder for each graph built by this factory, and graphs built byGraphBuildercreated by this factory. If the same edge builder can be used for all graphs, consider usingGraphFactory.setEdgeBuilder(IdBuilder)instead.For some types there is a default edge factory, see
IdBuilder.defaultFactory(Class).By default, graphs built by this factory will not have an edge builder, namely a
nulledge builder.- Specified by:
setEdgeFactoryin interfaceGraphFactory<Integer,Integer> - Parameters:
edgeFactory- the edge factory, ornullif no edge builder should be used- Returns:
- this factory
-
addHint
Description copied from interface:GraphFactoryAdd a hint to this factory.Hints do not change the behavior of the graphs built by this factory, by may affect performance.
- Specified by:
addHintin interfaceGraphFactory<Integer,Integer> - Parameters:
hint- the hint to add- Returns:
- this factory
-
removeHint
Description copied from interface:GraphFactoryRemove a hint from this factory.Hints do not change the behavior of the graphs built by this factory, by may affect performance.
- Specified by:
removeHintin interfaceGraphFactory<Integer,Integer> - Parameters:
hint- the hint to remove- Returns:
- this factory
-
undirected
Create an undirected int graph factory.- Returns:
- a new factory that can build undirected int graphs
-
directed
Create a directed int graph factory.- Returns:
- a new factory that can build directed int graphs
-
newInstance
Create a new un/directed int graph factory.- Parameters:
directed- whether the graphs created by the factory should be directed- Returns:
- a new factory that can build un/directed int graphs
-
setOption
Description copied from interface:GraphFactory[TL;DR Don't call me!] Set an option.The builder might support different options to customize its implementation. These options never change the behavior of the algorithm, only its internal implementation. The possible options are not exposed as 'public' because they are not part of the API and may change in the future.
These options are mainly for debug and benchmark purposes.
- Specified by:
setOptionin interfaceGraphFactory<Integer,Integer> - Parameters:
key- the option keyvalue- the option value- Returns:
- this builder
-