Uses of Interface
com.jgalgo.graph.IndexGraphFactory
Packages that use IndexGraphFactory
Package
Description
Graphs object are the fundamental building blocks of the JGAlgo library.
-
Uses of IndexGraphFactory in com.jgalgo.graph
Methods in com.jgalgo.graph that return IndexGraphFactoryModifier and TypeMethodDescriptionIndexGraphFactory.addHint
(GraphFactory.Hint hint) default IndexGraphFactory
IndexGraphFactory.allowParallelEdges()
IndexGraphFactory.allowParallelEdges
(boolean parallelEdges) default IndexGraphFactory
IndexGraphFactory.allowSelfEdges()
IndexGraphFactory.allowSelfEdges
(boolean selfEdges) static IndexGraphFactory
IndexGraphFactory.directed()
Create a directed index graph factory.IndexGraphFactory.expectedEdgesNum
(int expectedEdgesNum) IndexGraphFactory.expectedVerticesNum
(int expectedVerticesNum) static IndexGraphFactory
IndexGraphFactory.newInstance
(boolean directed) Create a new un/directed index graph factory.IndexGraphFactory.removeHint
(GraphFactory.Hint hint) IndexGraphFactory.setDirected
(boolean directed) default IndexGraphFactory
IndexGraphFactory.setEdgeBuilder
(IdBuilder<Integer> edgeBuilder) Deprecated.Index graphs does not support custom edge builderdefault IndexGraphFactory
IndexGraphFactory.setEdgeFactory
(Supplier<? extends IdBuilder<Integer>> edgeFactory) Deprecated.Index graphs does not support custom edge builderdefault IndexGraphFactory
default IndexGraphFactory
IndexGraphFactory.setVertexBuilder
(IdBuilder<Integer> vertexBuilder) Deprecated.Index graphs does not support custom vertex builderdefault IndexGraphFactory
IndexGraphFactory.setVertexFactory
(Supplier<? extends IdBuilder<Integer>> vertexFactory) Deprecated.Index graphs does not support custom vertex builderstatic IndexGraphFactory
IndexGraphFactory.undirected()
Create an undirected index graph factory.