OptimizationGoal Enumeration

Enumerates the possible goals for the solution of an optimization problem.

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum OptimizationGoal

Members

FirstOptimalSolution0 Return as soon as the first solution known to be optimal is found.
FirstFeasibleSolution1 Return as soon as the first solution is found that satisfies all the constraints. This solution may not be optimal.
FirstFeasibleSolutionInRange2 Return as soon as the first solution is found that satisfies all the constraints and whose optimal value is within the specified range. This solution may not be optimal.
AllOptimalSolutions3 Find all optimal solutions.

See Also