Uses of Interface
com.jgalgo.graph.IndexGraphBuilder
Package
Description
Graphs object are the fundamental building blocks of the JGAlgo library.
-
Uses of IndexGraphBuilder in com.jgalgo.graph
Modifier and TypeMethodDescriptionstatic IndexGraphBuilder
IndexGraphBuilder.directed()
Create a new builder that builds directed graphs.IndexGraphFactory.newBuilder()
default IndexGraphBuilder
IndexGraphFactory.newBuilderCopyOf
(Graph<Integer, Integer> g) Create a new graph builder with the factory parameters initialized with an existing graph vertices and edges, without copying the weights.IndexGraphFactory.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.static IndexGraphBuilder
IndexGraphBuilder.newCopyOf
(IndexGraph g) Create a new builder initialized with an existing graph vertices and edges, without copying the weights.static IndexGraphBuilder
IndexGraphBuilder.newCopyOf
(IndexGraph g, boolean copyVerticesWeights, boolean copyEdgesWeights) Create a new builder initialized with an existing graph vertices and edges, with/without copying the weights.static IndexGraphBuilder
IndexGraphBuilder.newInstance
(boolean directed) Create a new builder that builds un/directed graphs.static IndexGraphBuilder
IndexGraphBuilder.undirected()
Create a new builder that builds undirected graphs.