Uses of Class
org.jgrapht.alg.matching.blossom.v5.ObjectiveSense
-
Packages that use ObjectiveSense Package Description org.jgrapht.alg.matching.blossom.v5 Package for Kolmogorov's Blossom V algorithm -
-
Uses of ObjectiveSense in org.jgrapht.alg.matching.blossom.v5
Fields in org.jgrapht.alg.matching.blossom.v5 declared as ObjectiveSense Modifier and Type Field Description private ObjectiveSense
KolmogorovWeightedMatching. objectiveSense
The objective sense of the algorithm, i.e.private ObjectiveSense
KolmogorovWeightedPerfectMatching. objectiveSense
The objective sense of the algorithm, i.e.Methods in org.jgrapht.alg.matching.blossom.v5 that return ObjectiveSense Modifier and Type Method Description static ObjectiveSense
ObjectiveSense. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ObjectiveSense[]
ObjectiveSense. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.jgrapht.alg.matching.blossom.v5 with parameters of type ObjectiveSense Constructor Description KolmogorovWeightedMatching(Graph<V,E> initialGraph, BlossomVOptions options, ObjectiveSense objectiveSense)
Constructs a new instance of the algorithm with the specifiedoptions
.KolmogorovWeightedMatching(Graph<V,E> initialGraph, ObjectiveSense objectiveSense)
Constructs a new instance of the algorithm using the default options.KolmogorovWeightedPerfectMatching(Graph<V,E> graph, BlossomVOptions options, ObjectiveSense objectiveSense)
Constructs a new instance of the algorithm with the specifiedoptions
.KolmogorovWeightedPerfectMatching(Graph<V,E> graph, ObjectiveSense objectiveSense)
Constructs a new instance of the algorithm using the default options.
-