6.5 Conic Exponential Optimization¶
Conic optimization is a generalization of linear optimization, allowing constraints of the type
where \(x^t\) is a subset of the problem variables and \(\K_t\) is a convex cone. Since the set \(\real^n\) of real numbers is also a convex cone, we can simply write a compound conic constraint \(x\in \K\) where \(\K=\K_1\times\cdots\times\K_l\) is a product of smaller cones and \(x\) is the full problem variable.
MOSEK can solve conic optimization problems of the form
where the domain restriction, \(x \in \K\), implies that all variables are partitioned into convex cones
In this tutorial we describe how to use the primal exponential cone defined as:
MOSEK also supports the dual exponential cone:
For other types of cones supported by MOSEK see Sec. 6.3 (Conic Quadratic Optimization), Sec. 6.4 (Power Cone Optimization), Sec. 6.6 (Semidefinite Optimization). Different cone types can appear together in one optimization problem.
For example, the following constraint:
describes a convex cone in \(\real^3\) given by the inequalities:
Furthermore, each variable may belong to one cone at most. The constraint \(x_i - x_j = 0\) would however allow \(x_i\) and \(x_j\) to belong to different cones with same effect.
6.5.1 Example CEO1¶
Consider the following basic conic exponential problem which involves some linear constraints and an exponential inequality:
The conic form of (6.8) is:
Setting up the linear part
The linear parts (constraints, variables, objective) are set up using exactly the same methods as for linear problems, and we refer to Sec. 6.1 (Linear Optimization) for all the details. The same applies to technical aspects such as defining an optimization task, retrieving the solution and so on.
Setting up the conic constraints
The conic constraints are specified as columns in a list-typed matrix called cones, with rows for each associated detail. In example (6.9) we have one conic constraint:
NUMCONES <- 1
prob$cones <- matrix(list(), nrow=2, ncol=NUMCONES)
rownames(prob$cones) <- c("type","sub")
prob$cones[,1] <- list("PEXP", c(1, 2, 3))
The first row selects the type of cone, in this case the exponential cone "MSK_CT_PEXP"
, noting that the prefix MSK_CT_
is optional. The second row selects the vector of variables constrained to the cone, identified by index (counting from one in the R language).
Source code
library("Rmosek")
ceo1 <- function()
{
# Specify the non-conic part of the problem.
prob <- list(sense="min")
prob$c <- c(1, 1, 0)
prob$A <- Matrix(c(1, 1, 1), nrow=1, sparse=TRUE)
prob$bc <- rbind(blc=1,
buc=1)
prob$bx <- rbind(blx=rep(-Inf,3),
bux=rep( Inf,3))
# Specify the cones.
NUMCONES <- 1
prob$cones <- matrix(list(), nrow=2, ncol=NUMCONES)
rownames(prob$cones) <- c("type","sub")
prob$cones[,1] <- list("PEXP", c(1, 2, 3))
# Solve the problem
r <- mosek(prob)
# Return the solution
stopifnot(identical(r$response$code, 0))
r$sol
}
ceo1()