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