Uses of Interface
com.jgalgo.alg.match.MatchingAlgo.Builder
-
Packages that use MatchingAlgo.Builder Package Description com.jgalgo.alg.match Algorithms for computing matchings in graphs, such as maximum/minimum weight matchings, maximum cardinality matchings, perfect matchings, ect. -
-
Uses of MatchingAlgo.Builder in com.jgalgo.alg.match
Methods in com.jgalgo.alg.match that return MatchingAlgo.Builder Modifier and Type Method Description MatchingAlgo.Builder
MatchingAlgo.Builder. bipartite(boolean bipartite)
Set whether the matching algorithms built by this builder should only support bipartite graphs.static MatchingAlgo.Builder
MatchingAlgo. builder()
Create a new matching algorithm builder.MatchingAlgo.Builder
MatchingAlgo.Builder. cardinality(boolean cardinality)
Set whether the matching algorithms built by this builder should support only maximum cardinality matching.
-