Uses of Enum Class
org.jgrapht.alg.matching.blossom.v5.ObjectiveSense
Packages that use ObjectiveSense
Package
Description
Package for Kolmogorov's Blossom V algorithm
-
Uses of ObjectiveSense in org.jgrapht.alg.matching.blossom.v5
Subclasses with type arguments of type ObjectiveSense in org.jgrapht.alg.matching.blossom.v5Modifier and TypeClassDescriptionenumEnum specifying the objective sense of the algorithm.Fields in org.jgrapht.alg.matching.blossom.v5 declared as ObjectiveSenseModifier and TypeFieldDescriptionprivate ObjectiveSenseKolmogorovWeightedMatching.objectiveSenseThe objective sense of the algorithm, i.e.private ObjectiveSenseKolmogorovWeightedPerfectMatching.objectiveSenseThe objective sense of the algorithm, i.e.Methods in org.jgrapht.alg.matching.blossom.v5 that return ObjectiveSenseModifier and TypeMethodDescriptionstatic ObjectiveSenseReturns the enum constant of this class with the specified name.static ObjectiveSense[]ObjectiveSense.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.jgrapht.alg.matching.blossom.v5 with parameters of type ObjectiveSenseModifierConstructorDescriptionKolmogorovWeightedMatching(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.