6.6 Geometric Programming¶
Geometric programs (GP) are a particular class of optimization problems which can be expressed in special polynomial form as positive sums of generalized monomials. More precisely, a geometric problem in canonical form is
where each \(f_0,\ldots,f_m\) is a posynomial, that is a function of the form
with arbitrary real \(\alpha_{ki}\) and \(c_k>0\). The standard way to formulate GPs in convex form is to introduce a variable substitution
Under this substitution all constraints in a GP can be reduced to the form
involving a log-sum-exp bound. Moreover, constraints involving only a single monomial in \(x\) can be even more simply written as a linear inequality:
We refer to the MOSEK Modeling Cookbook and to [BKVH07] for more details on this reformulation. A geometric problem formulated in convex form can be entered into MOSEK with the help of exponential cones.
6.6.1 Example GP1¶
The following problem comes from [BKVH07]. Consider maximizing the volume of a \(h\times w\times d\) box subject to upper bounds on the area of the floor and of the walls and bounds on the ratios \(h/w\) and \(d/w\):
The decision variables in the problem are \(h,w,d\). We make a substitution
after which (6.19) becomes
Next, we demonstrate how to implement a log-sum-exp constraint (6.18). It can be written as:
This presentation requires one extra variable \(u_k\) for each monomial appearing in the original posynomial constraint. In this case the affine conic constraints (ACC, see Sec. 6.2 (From Linear to Conic Optimization)) take the form:
As a matter of demonstration we will also add the constraint
as an affine conic constraint. It means that to define the all the ACCs we need to produce the following affine expressions (AFE) and store them:
We implement it by adding all the affine expressions (AFE) and then picking the ones required for each ACC:
putvarboundsliceconst(task,1, numvar+1, MSK_BK_FR, -Inf, Inf)
appendcons(task,3)
# s0+s1 < 1 <=> log(s0+s1) < 0
putaijlist(task,
[1,1,2,2,3,3],
[y, z, x, y, z, y],
[1.0, 1.0, 1.0, -1.0, 1.0, -1.0])
putconbound(task,1,MSK_BK_UP,-Inf,log(Af))
putconbound(task,2,MSK_BK_RA,log(alpha),log(beta))
putconbound(task,3,MSK_BK_RA,log(gamma),log(delta))
let afei = getnumafe(task)+1,
u1 = getnumvar(task)+1,
u2 = u1+1,
afeidx = [1, 2, 3, 3, 4, 4, 6, 6],
varidx = [u1, u2, x, y, x, z, u1, u2],
fval = [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
gfull = [0.0, 0.0, log(2.0/Aw), log(2.0/Aw), 1.0, -1.0]
appendvars(task,2)
appendafes(task,6)
putvarboundsliceconst(task,u1, u1+2, MSK_BK_FR, -Inf, Inf)
# Affine expressions appearing in affine conic constraints
# in this order:
# u1, u2, x+y+log(2/Awall), x+z+log(2/Awall), 1.0, u1+u2-1.0
putafefentrylist(task,afeidx, varidx, fval)
putafegslice(task,afei, afei+6, gfull)
let dom = appendprimalexpconedomain(task)
# (u1, 1, x+y+log(2/Awall)) \in EXP
appendacc(task,dom, [1, 5, 3], nothing)
# (u2, 1, x+z+log(2/Awall)) \in EXP
appendacc(task,dom, [2, 5, 4], nothing)
end
let dom = appendrzerodomain(task,1)
# The constraint u1+u2-1 \in \ZERO is added also as an ACC
appendacc(task,dom, [6], nothing)
end
end
We can now use this function to assemble all constraints in the model. The linear part of the problem is entered as in Sec. 6.1 (Linear Optimization).
function max_volume_box(Aw :: Float64,
Af :: Float64,
alpha :: Float64,
beta :: Float64,
gamma :: Float64,
delta :: Float64)
numvar = 3 # Variables in original problem
# Create the optimization task.
maketask() do task
# Use remote server: putoptserverhost(task,"http://solve.mosek.com:30080")
putstreamfunc(task,MSK_STREAM_LOG,msg -> print(msg))
# Add variables and constraints
appendvars(task,numvar)
x = 1
y = 2
z = 3
# Objective is the sum of three first variables
putobjsense(task,MSK_OBJECTIVE_SENSE_MAXIMIZE)
putcslice(task,1, numvar+1, [1.0,1.0,1.0])
putvarboundsliceconst(task,1, numvar+1, MSK_BK_FR, -Inf, Inf)
appendcons(task,3)
# s0+s1 < 1 <=> log(s0+s1) < 0
putaijlist(task,
[1,1,2,2,3,3],
[y, z, x, y, z, y],
[1.0, 1.0, 1.0, -1.0, 1.0, -1.0])
putconbound(task,1,MSK_BK_UP,-Inf,log(Af))
putconbound(task,2,MSK_BK_RA,log(alpha),log(beta))
putconbound(task,3,MSK_BK_RA,log(gamma),log(delta))
let afei = getnumafe(task)+1,
u1 = getnumvar(task)+1,
u2 = u1+1,
afeidx = [1, 2, 3, 3, 4, 4, 6, 6],
varidx = [u1, u2, x, y, x, z, u1, u2],
fval = [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
gfull = [0.0, 0.0, log(2.0/Aw), log(2.0/Aw), 1.0, -1.0]
appendvars(task,2)
appendafes(task,6)
putvarboundsliceconst(task,u1, u1+2, MSK_BK_FR, -Inf, Inf)
# Affine expressions appearing in affine conic constraints
# in this order:
# u1, u2, x+y+log(2/Awall), x+z+log(2/Awall), 1.0, u1+u2-1.0
putafefentrylist(task,afeidx, varidx, fval)
putafegslice(task,afei, afei+6, gfull)
let dom = appendprimalexpconedomain(task)
# (u1, 1, x+y+log(2/Awall)) \in EXP
appendacc(task,dom, [1, 5, 3], nothing)
# (u2, 1, x+z+log(2/Awall)) \in EXP
appendacc(task,dom, [2, 5, 4], nothing)
end
let dom = appendrzerodomain(task,1)
# The constraint u1+u2-1 \in \ZERO is added also as an ACC
appendacc(task,dom, [6], nothing)
end
end
optimize(task)
writedata(task,"gp1.ptf")
exp.(getxxslice(task,MSK_SOL_ITR, 1, numvar+1))
end # maketask
end # max_volume_box
Given sample data we obtain the solution \(h,w,d\) as follows:
hwd = let Aw = 200.0,
Af = 50.0,
alpha = 2.0,
beta = 10.0,
gamma = 2.0,
delta = 10.0
max_volume_box(Aw, Af, alpha, beta, gamma, delta)
end
println("h=$(hwd[1]) w=$(hwd[2]) d=$(hwd[3])\n");