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(
SimplexOptions options,
ParallelOptions parallelOptions
)
Public Function Solve (
options As SimplexOptions,
parallelOptions As ParallelOptions
) As DenseVector(Of Double)
public:
DenseVector<double>^ Solve(
SimplexOptions^ options,
ParallelOptions^ parallelOptions
)
member Solve :
options : SimplexOptions *
parallelOptions : ParallelOptions -> DenseVector<float>
Parameters
- options
- Type: SimplexOptions
An object that contains the options for the solver. - parallelOptions
- Type: System.Threading.TasksParallelOptions
A ParallelOptions value that specifies the parallel behavior of the algorithm.
Return Value
Type:
DenseVectorDoubleThe solution of the linear program.
Reference