Optimization Goal 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#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum OptimizationGoal
Members
FirstOptimalSolution | 0 | Return as soon as the first solution known to be optimal is found. |
FirstFeasibleSolution | 1 | Return as soon as the first solution is found that satisfies all the constraints. This solution may not be optimal. |
FirstFeasibleSolutionInRange | 2 | 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. |
AllOptimalSolutions | 3 | Find all optimal solutions. |