Solves a linear program with the specified options.
Namespace:
Extreme.Mathematics.Optimization
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DenseVector<double> Solve(
OptimizationGoal goal,
ParallelOptions parallelOptions,
double range
)
Public Function Solve (
goal As OptimizationGoal,
parallelOptions As ParallelOptions,
range As Double
) As DenseVector(Of Double)
public:
DenseVector<double>^ Solve(
OptimizationGoal goal,
ParallelOptions^ parallelOptions,
double range
)
member Solve :
goal : OptimizationGoal *
parallelOptions : ParallelOptions *
range : float -> DenseVector<float>
Parameters
- goal
- Type: Extreme.Mathematics.AlgorithmsOptimizationGoal
A OptimizationGoal value. - parallelOptions
- Type: System.Threading.TasksParallelOptions
A ParallelOptions value that specifies the parallel behavior of the algorithm. - range
- Type: SystemDouble
The maximum value for the optimal value.
Return Value
Type:
DenseVectorDoubleThe solution of the linear program.
Reference