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 IndexGraphFactoryIndexGraphFactory.allowParallelEdges()IndexGraphFactory.allowParallelEdges(boolean parallelEdges) default IndexGraphFactoryIndexGraphFactory.allowSelfEdges()IndexGraphFactory.allowSelfEdges(boolean selfEdges) static IndexGraphFactoryIndexGraphFactory.directed()Create a directed index graph factory.IndexGraphFactory.expectedEdgesNum(int expectedEdgesNum) IndexGraphFactory.expectedVerticesNum(int expectedVerticesNum) static IndexGraphFactoryIndexGraphFactory.newInstance(boolean directed) Create a new un/directed index graph factory.IndexGraphFactory.removeHint(GraphFactory.Hint hint) IndexGraphFactory.setDirected(boolean directed) default IndexGraphFactoryIndexGraphFactory.setEdgeBuilder(IdBuilder<Integer> edgeBuilder) Deprecated.Index graphs does not support custom edge builderdefault IndexGraphFactoryIndexGraphFactory.setEdgeFactory(Supplier<? extends IdBuilder<Integer>> edgeFactory) Deprecated.Index graphs does not support custom edge builderdefault IndexGraphFactorydefault IndexGraphFactoryIndexGraphFactory.setVertexBuilder(IdBuilder<Integer> vertexBuilder) Deprecated.Index graphs does not support custom vertex builderdefault IndexGraphFactoryIndexGraphFactory.setVertexFactory(Supplier<? extends IdBuilder<Integer>> vertexFactory) Deprecated.Index graphs does not support custom vertex builderstatic IndexGraphFactoryIndexGraphFactory.undirected()Create an undirected index graph factory.