Uses of Interface
com.jgalgo.graph.GraphBuilder
-
Packages that use GraphBuilder Package Description com.jgalgo.gen Graph generators used to generate (possibly random) graphs with different distributions and structures.com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of GraphBuilder in com.jgalgo.gen
Methods in com.jgalgo.gen that return GraphBuilder Modifier and Type Method Description GraphBuilder<V,E>
BarabasiAlbertGraphGenerator. generateIntoBuilder()
GraphBuilder<V,E>
CompleteGraphGenerator. generateIntoBuilder()
GraphBuilder<V,E>
EmptyGraphGenerator. generateIntoBuilder()
GraphBuilder<V,E>
GnpGraphGenerator. generateIntoBuilder()
GraphBuilder<V,E>
GraphGenerator. generateIntoBuilder()
Generates a graph into a builder.GraphBuilder<V,E>
RecursiveMatrixGraphGenerator. generateIntoBuilder()
-
Uses of GraphBuilder in com.jgalgo.graph
Subinterfaces of GraphBuilder in com.jgalgo.graph Modifier and Type Interface Description interface
IndexGraphBuilder
A builder for Index graphs.interface
IntGraphBuilder
A builder for int graphs.Methods in com.jgalgo.graph that return GraphBuilder Modifier and Type Method Description GraphBuilder<V,E>
GraphFactory. newBuilder()
Create a new graph builder with the factory parameters.static <V,E>
GraphBuilder<V,E>GraphBuilder. newDirected()
Create a new builder that builds directed graphs.static <V,E>
GraphBuilder<V,E>GraphBuilder. newFrom(Graph<V,E> g)
Create a new builder initialized with an existing graph vertices and edges, without copying the weights.static <V,E>
GraphBuilder<V,E>GraphBuilder. newFrom(Graph<V,E> g, boolean copyWeights)
Create a new builder initialized with an existing graph vertices and edges, with/without copying the weights.static <V,E>
GraphBuilder<V,E>GraphBuilder. newUndirected()
Create a new builder that builds undirected graphs.
-