8 OptimizersΒΆ
The most essential part of MOSEK are the optimizers:
primal simplex (linear problems),
dual simplex (linear problems),
interior-point (linear, quadratic and conic problems),
mixed-integer (problems with integer variables).
The structure of a successful optimization process is roughly:
Presolve
Elimination: Reduce the size of the problem.
Dualizer: Choose whether to solve the primal or the dual form of the problem.
Scaling: Scale the problem for better numerical stability.
Optimization
Optimize: Solve the problem using selected method.
Terminate: Stop the optimization when specific termination criteria have been met.
Report: Return the solution or an infeasibility certificate.
The preprocessing stage is transparent to the user, but useful to know about for tuning purposes. The purpose of the preprocessing steps is to make the actual optimization more efficient and robust. We discuss the details of the above steps in the following sections.
- 8.1 Presolve
- 8.2 Linear Optimization
- 8.3 Conic Optimization - Interior-point optimizer
- 8.4 The Optimizer for Mixed-Integer Problems