Uses of Interface
com.jgalgo.alg.common.AlgorithmBuilderBase
-
Packages that use AlgorithmBuilderBase Package Description com.jgalgo.alg.flow Algorithms for solving flow problems in graphs, such as maximum flow, min cost flow, and circulation problems.com.jgalgo.alg.match Algorithms for computing matchings in graphs, such as maximum/minimum weight matchings, maximum cardinality matchings, perfect matchings, ect.com.jgalgo.alg.shortestpath Algorithms for finding paths in graphs, such as shortest paths, iterating over all simple paths between two vertices, computing the Voronoi cells given a set of sites, ect. -
-
Uses of AlgorithmBuilderBase in com.jgalgo.alg.flow
Subinterfaces of AlgorithmBuilderBase in com.jgalgo.alg.flow Modifier and Type Interface Description static interface
MinimumCostFlow.Builder
A builder forMinimumCostFlow
objects. -
Uses of AlgorithmBuilderBase in com.jgalgo.alg.match
Subinterfaces of AlgorithmBuilderBase in com.jgalgo.alg.match Modifier and Type Interface Description static interface
MatchingAlgo.Builder
A builder forMatchingAlgo
objects. -
Uses of AlgorithmBuilderBase in com.jgalgo.alg.shortestpath
Subinterfaces of AlgorithmBuilderBase in com.jgalgo.alg.shortestpath Modifier and Type Interface Description static interface
ShortestPathAllPairs.Builder
A builder forShortestPathAllPairs
objects.static interface
ShortestPathSingleSource.Builder
A builder forShortestPathSingleSource
objects.
-