Uses of Interface
com.jgalgo.graph.IntGraphFactory
-
Packages that use IntGraphFactory Package Description com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of IntGraphFactory in com.jgalgo.graph
Subinterfaces of IntGraphFactory in com.jgalgo.graph Modifier and Type Interface Description interface
IndexGraphFactory
A factory for Index graphs.Methods in com.jgalgo.graph that return IntGraphFactory Modifier and Type Method Description IntGraphFactory
IntGraphFactory. addHint(GraphFactory.Hint hint)
default IntGraphFactory
IntGraphFactory. allowParallelEdges()
IntGraphFactory
IntGraphFactory. allowParallelEdges(boolean parallelEdges)
default IntGraphFactory
IntGraphFactory. allowSelfEdges()
IntGraphFactory
IntGraphFactory. allowSelfEdges(boolean selfEdges)
static IntGraphFactory
IntGraphFactory. directed()
Create a directed int graph factory.IntGraphFactory
IntGraphFactory. expectedEdgesNum(int expectedEdgesNum)
IntGraphFactory
IntGraphFactory. expectedVerticesNum(int expectedVerticesNum)
static IntGraphFactory
IntGraphFactory. newInstance(boolean directed)
Create a new un/directed int graph factory.IntGraphFactory
IntGraphFactory. removeHint(GraphFactory.Hint hint)
IntGraphFactory
IntGraphFactory. setDirected(boolean directed)
default IntGraphFactory
IntGraphFactory. setEdgeBuilder(IdBuilder<Integer> edgeBuilder)
Set the edge builder used by the built graph(s).IntGraphFactory
IntGraphFactory. setEdgeFactory(Supplier<? extends IdBuilder<Integer>> edgeFactory)
default IntGraphFactory
IntGraphFactory. setOption(String key, Object value)
default IntGraphFactory
IntGraphFactory. setVertexBuilder(IdBuilder<Integer> vertexBuilder)
Set the vertex builder used by the built graph(s).IntGraphFactory
IntGraphFactory. setVertexFactory(Supplier<? extends IdBuilder<Integer>> vertexFactory)
static IntGraphFactory
IntGraphFactory. undirected()
Create an undirected int graph factory.
-