7.4 Conic Exponential Optimization¶
The structure of a typical conic optimization problem is
(see Sec. 12 (Problem Formulation and Solutions) for detailed formulations). Here we discuss how to set-up problems with the primal/dual exponential cones.
MOSEK supports two exponential cones, namely:
Primal exponential cone:
\[\EXP = \left\lbrace x \in \real^3: x_0 \geq x_1 \exp(x_2/x_1),\ x_0,x_1\geq 0 \right\rbrace.\]Dual exponential cone:
\[\EXP^* = \left\lbrace s \in \real^3: s_0 \geq -s_2 e^{-1} \exp(s_1/s_2),\ s_2\leq 0,s_0\geq 0 \right\rbrace.\]
For example, consider the following constraint:
which describes a convex cone in \(\real^3\) given by the inequalities:
For other types of cones supported by MOSEK, see Sec. 14.8 (Supported domains) and the other tutorials in this chapter. Different cone types can appear together in one optimization problem.
7.4.1 Example CEO1¶
Consider the following basic conic exponential problem which involves some linear constraints and an exponential inequality:
The affine conic form of (7.6) is:
where \(I\) is the \(3\times 3\) identity matrix.
We start by creating the optimization model:
Model::t M = new Model("ceo1"); auto _M = finally([&]() { M->dispose(); });
We then define the variable x
.
Variable::t x = M->variable("x", 3, Domain::unbounded());
The linear constraint is defined using the sum operator Expr.sum
:
// Create the constraint
// x[0] + x[1] + x[2] = 1.0
M->constraint("lc", Expr::sum(x), Domain::equalsTo(1.0));
The conic exponential constraint in this case is very simple as it involves just the variable x
. The primal exponential cone is referred to via Domain.inPExpCone
, and it must be applied to a variable of length 3 or an array of such variables. Note that this is a basic way of defining conic constraints, and that in practice they would have more complicated structure.
// Create the exponential conic constraint
Constraint::t expc = M->constraint("expc", x, Domain::inPExpCone());
We only need the objective function:
// Set the objective function to (x[0] + x[1])
M->objective("obj", ObjectiveSense::Minimize, Expr::sum(x->slice(0,2)));
Calling the Model.solve
method invokes the solver:
M->solve();
The primal and dual solution values can be retrieved using Variable.level
, Constraint.level
and Variable.dual
, Constraint.dual
, respectively:
// Get the linear solution values
ndarray<double, 1> xlvl = *(x->level());
// Get conic solution of expc1
ndarray<double, 1> expclvl = *(expc->level());
ndarray<double, 1> expcdl = *(expc->dual());
#include <iostream>
#include "fusion.h"
using namespace mosek::fusion;
using namespace monty;
int main(int argc, char ** argv)
{
Model::t M = new Model("ceo1"); auto _M = finally([&]() { M->dispose(); });
Variable::t x = M->variable("x", 3, Domain::unbounded());
// Create the constraint
// x[0] + x[1] + x[2] = 1.0
M->constraint("lc", Expr::sum(x), Domain::equalsTo(1.0));
// Create the exponential conic constraint
Constraint::t expc = M->constraint("expc", x, Domain::inPExpCone());
// Set the objective function to (x[0] + x[1])
M->objective("obj", ObjectiveSense::Minimize, Expr::sum(x->slice(0,2)));
// Solve the problem
M->solve();
// Get the linear solution values
ndarray<double, 1> xlvl = *(x->level());
// Get conic solution of expc1
ndarray<double, 1> expclvl = *(expc->level());
ndarray<double, 1> expcdl = *(expc->dual());
std::cout << "x1,x2,x3 = " << xlvl << std::endl;
std::cout << "expc levels = " << expclvl << std::endl;
std::cout << "expc dual conic var levels = " << expcdl << std::endl;
}