Uses of Interface
com.jgalgo.graph.IntGraphBuilder
-
Packages that use IntGraphBuilder Package Description com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of IntGraphBuilder in com.jgalgo.graph
Subinterfaces of IntGraphBuilder in com.jgalgo.graph Modifier and Type Interface Description interface
IndexGraphBuilder
A builder for Index graphs.Methods in com.jgalgo.graph that return IntGraphBuilder Modifier and Type Method Description static IntGraphBuilder
IntGraphBuilder. directed()
Create a new builder that builds directed int graphs.IntGraphBuilder
IntGraphFactory. newBuilder()
default IntGraphBuilder
IntGraphFactory. newBuilderCopyOf(Graph<Integer,Integer> g)
IntGraphBuilder
IntGraphFactory. newBuilderCopyOf(Graph<Integer,Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights)
static IntGraphBuilder
IntGraphBuilder. newCopyOf(Graph<Integer,Integer> g)
Create a new builder initialized with an existing graph vertices and edges, without copying the weights.static IntGraphBuilder
IntGraphBuilder. newCopyOf(Graph<Integer,Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights)
Create a new builder initialized with an existing graph vertices and edges, with/without copying the weights.static IntGraphBuilder
IntGraphBuilder. newInstance(boolean directed)
Create a new builder that builds un/directed int graphs.static IntGraphBuilder
IntGraphBuilder. undirected()
Create a new builder that builds undirected graphs.
-