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