1 Introduction

The MOSEK Optimization Suite 10.1.28 is a powerful software package capable of solving large-scale optimization problems of the following kind:

  • linear,

  • conic:

    • conic quadratic (also known as second-order cone),

    • involving the exponential cone,

    • involving the power cone,

    • semidefinite,

  • convex quadratic and quadratically constrained,

  • integer.

In order to obtain an overview of features in the MOSEK Optimization Suite consult the product introduction guide.

The most widespread class of optimization problems is linear optimization problems, where all relations are linear. The tremendous success of both applications and theory of linear optimization can be ascribed to the following factors:

  • The required data are simple, i.e. just matrices and vectors.

  • Convexity is guaranteed since the problem is convex by construction.

  • Linear functions are trivially differentiable.

  • There exist very efficient algorithms and software for solving linear problems.

  • Duality properties for linear optimization are nice and simple.

Even if the linear optimization model is only an approximation to the true problem at hand, the advantages of linear optimization may outweigh the disadvantages. In some cases, however, the problem formulation is inherently nonlinear and a linear approximation is either intractable or inadequate. Conic optimization has proved to be a very expressive and powerful way to introduce nonlinearities, while preserving all the nice properties of linear optimization listed above.

The fundamental expression in linear optimization is a linear expression of the form

\[A x - b \geq 0.\]

In conic optimization this is replaced with a wider class of constraints

\[A x - b \in \K\]

where \(\K\) is a convex cone. For example in 3 dimensions \(\K\) may correspond to an ice cream cone. The conic optimizer in MOSEK supports a number of different types of cones \(\K\), which allows a surprisingly large number of nonlinear relations to be modeled, as described in the MOSEK Modeling Cookbook, while preserving the nice algorithmic and theoretical properties of linear optimization.

1.1 Why the Optimizer API for C?

The Optimizer API for C provides low-level access to all functionalities of MOSEK from any C compatible language. It consists of a single header file and a set of library files which an application must link against when building. This interface has the smallest possible overhead, however other interfaces might be considered more convenient to use for the project at hand.

The Optimizer API for C provides access to:

  • Linear Optimization (LO)

  • Conic Quadratic (Second-Order Cone) Optimization (CQO, SOCO)

  • Power Cone Optimization

  • Conic Exponential Optimization (CEO)

  • Convex Quadratic and Quadratically Constrained Optimization (QO, QCQO)

  • Semidefinite Optimization (SDO)

  • Mixed-Integer Optimization (MIO)

as well as additional interfaces for:

  • problem analysis,

  • sensitivity analysis,

  • infeasibility analysis,

  • BLAS/LAPACK linear algebra routines.