Uses of Interface
com.jgalgo.graph.IntGraphBuilder
Packages that use IntGraphBuilder
Package
Description
Graphs object are the fundamental building blocks of the JGAlgo library.
-
Uses of IntGraphBuilder in com.jgalgo.graph
Subinterfaces of IntGraphBuilder in com.jgalgo.graphMethods in com.jgalgo.graph that return IntGraphBuilderModifier and TypeMethodDescriptionstatic IntGraphBuilderIntGraphBuilder.directed()Create a new builder that builds directed int graphs.IntGraphFactory.newBuilder()default IntGraphBuilderIntGraphFactory.newBuilderCopyOf(Graph<Integer, Integer> g) IntGraphFactory.newBuilderCopyOf(Graph<Integer, Integer> g, boolean copyVerticesWeights, boolean copyEdgesWeights) static IntGraphBuilderCreate a new builder initialized with an existing graph vertices and edges, without copying the weights.static IntGraphBuilderIntGraphBuilder.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 IntGraphBuilderIntGraphBuilder.newInstance(boolean directed) Create a new builder that builds un/directed int graphs.static IntGraphBuilderIntGraphBuilder.undirected()Create a new builder that builds undirected graphs.