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 IntGraphFactoryIntGraphFactory.allowParallelEdges()IntGraphFactory.allowParallelEdges(boolean parallelEdges) default IntGraphFactoryIntGraphFactory.allowSelfEdges()IntGraphFactory.allowSelfEdges(boolean selfEdges) static IntGraphFactoryIntGraphFactory.directed()Create a directed int graph factory.IntGraphFactory.expectedEdgesNum(int expectedEdgesNum) IntGraphFactory.expectedVerticesNum(int expectedVerticesNum) static IntGraphFactoryIntGraphFactory.newInstance(boolean directed) Create a new un/directed int graph factory.IntGraphFactory.removeHint(GraphFactory.Hint hint) IntGraphFactory.setDirected(boolean directed) default IntGraphFactoryIntGraphFactory.setEdgeBuilder(IdBuilder<Integer> edgeBuilder) Set the edge builder used by the built graph(s).IntGraphFactory.setEdgeFactory(Supplier<? extends IdBuilder<Integer>> edgeFactory) default IntGraphFactorydefault IntGraphFactoryIntGraphFactory.setVertexBuilder(IdBuilder<Integer> vertexBuilder) Set the vertex builder used by the built graph(s).IntGraphFactory.setVertexFactory(Supplier<? extends IdBuilder<Integer>> vertexFactory) static IntGraphFactoryIntGraphFactory.undirected()Create an undirected int graph factory.