Enumerates the possible goals for the solution of an optimization problem.
Namespace:
Extreme.Mathematics.Algorithms
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum OptimizationGoal
Public Enumeration OptimizationGoal
public enum class OptimizationGoal
| Member name | Value | Description |
---|
| 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.
|
Reference