6.11 Problem Modification and Reoptimization¶
Often one might want to solve not just a single optimization problem, but a sequence of problems, each differing only slightly from the previous one. This section demonstrates how to modify and re-optimize an existing problem.
The example we study is a simple production planning model.
Problem modifications regarding variables, cones, objective function and constraints can be grouped in categories:
add/remove,
coefficient modifications,
bounds modifications.
Especially removing variables and constraints can be costly. Special care must be taken with respect to constraints and variable indexes that may be invalidated.
Depending on the type of modification, MOSEK may be able to optimize the modified problem more efficiently exploiting the information and internal state from the previous execution. After optimization, the solution is always stored internally, and is available before next optimization. The former optimal solution may be still feasible, but no longer optimal; or it may remain optimal if the modification of the objective function was small. This special case is discussed in Sec. 14.3 (Sensitivity Analysis).
In general, MOSEK exploits dual information and availability of an optimal basis from the previous execution. The simplex optimizer is well suited for exploiting an existing primal or dual feasible solution. Restarting capabilities for interior-point methods are still not as reliable and effective as those for the simplex algorithm. More information can be found in Chapter 10 of the book [Chvatal83].
Parameter settings (see Sec. 7.5 (Setting solver parameters)) can also be changed between optimizations.
6.11.1 Example: Production Planning¶
A company manufactures three types of products. Suppose the stages of manufacturing can be split into three parts: Assembly, Polishing and Packing. In the table below we show the time required for each stage as well as the profit associated with each product.
Product no. |
Assembly (minutes) |
Polishing (minutes) |
Packing (minutes) |
Profit ($) |
---|---|---|---|---|
0 |
2 |
3 |
2 |
1.50 |
1 |
4 |
2 |
3 |
2.50 |
2 |
3 |
3 |
2 |
3.00 |
With the current resources available, the company has \(100,000\) minutes of assembly time, \(50,000\) minutes of polishing time and \(60,000\) minutes of packing time available per year. We want to know how many items of each product the company should produce each year in order to maximize profit?
Denoting the number of items of each type by \(x_0,x_1\) and \(x_2\), this problem can be formulated as a linear optimization problem:
and
Code in Listing 6.20 loads and solves this problem.
let numcon = 3,
numvar = 3,
c = [1.5, 2.5, 3.0 ],
bkc = [ MSK_BK_UP,
MSK_BK_UP,
MSK_BK_UP
],
blc = [ -Inf,
-Inf,
-Inf ],
buc = [ 100000.0,
50000.0,
60000.0
],
bkx = [ MSK_BK_LO,
MSK_BK_LO,
MSK_BK_LO ],
blx = [ 0.0, 0.0, 0.0 ],
bux = [ +Inf,
+Inf,
+Inf ],
aptrb = Int64[ 1,4,7 ],
aptre = Int64[ 4,7,10 ],
asub = Int32[ 1, 2, 3,
1, 2, 3,
1, 2, 3 ],
aval = [ 2.0, 3.0, 2.0,
4.0, 2.0, 3.0,
3.0, 3.0, 2.0 ]
maketask() do task # 126
# Use remote server: putoptserverhost(task,"http://solve.mosek.com:30080")
putstreamfunc(task,MSK_STREAM_LOG,msg -> print(msg))
# Append the constraints.
appendcons(task,numcon)
# Append the variables.
appendvars(task,numvar)
# Put C.
for j in 1:numvar
putcj(task,j, c[j])
end
# Put constraint bounds
for i in 1:numcon
putconbound(task,i, bkc[i], blc[i], buc[i])
end
# Put variable bounds.
for j in 1:numvar
putvarbound(task,j, bkx[j], blx[j], bux[j])
end
# Put A.
putacolslice(task,1,numvar+1,aptrb,aptre,asub,aval)
# A maximization problem
putobjsense(task,MSK_OBJECTIVE_SENSE_MAXIMIZE)
# Solve the problem
optimize(task)
xx = getxx(task,MSK_SOL_BAS) # Request the basic solution.
println("x = $xx")
6.11.2 Changing the Linear Constraint Matrix¶
Suppose we want to change the time required for assembly of product \(0\) to \(3\) minutes. This corresponds to setting \(a_{0,0} = 3\), which is done by calling the function putaij
as shown below.
putaij(task,1,1, 3.0)
The problem now has the form:
and
After this operation we can reoptimize the problem.
6.11.3 Appending Variables¶
We now want to add a new product with the following data:
Product no. |
Assembly (minutes) |
Polishing (minutes) |
Packing (minutes) |
Profit ($) |
---|---|---|---|---|
3 |
4 |
0 |
1 |
1.00 |
This corresponds to creating a new variable \(x_3\), appending a new column to the \(A\) matrix and setting a new term in the objective. We do this in Listing 6.21
# Get index of new variable.
varidx = getnumvar(task)+1
# Append a new variable x_3 to the problem
appendvars(task,1)
numvar += 1
# Set bounds on new varaible
putvarbound(task,
varidx,
MSK_BK_LO,
0.0,
Inf);
# Change objective
putcj(task,varidx, 1.0)
# Put new values in the A matrix
let acolsub = Int32[1,3],
acolval = Float64[4.0, 1.0]
putacol(task,varidx, # column index
acolsub,
acolval)
end
After this operation the new problem is:
and
6.11.4 Appending Constraints¶
Now suppose we want to add a new stage to the production process called Quality control for which \(30000\) minutes are available. The time requirement for this stage is shown below:
Product no. |
Quality control (minutes) |
---|---|
0 |
1 |
1 |
2 |
2 |
1 |
3 |
1 |
This corresponds to adding the constraint
to the problem. This is done as follows.
# Get index of new constraint.
conidx = getnumcon(task)+1
# Append a new constraint
appendcons(task,1)
numcon += 1;
# Set bounds on new constraint
putconbound(task,
conidx,
MSK_BK_UP,
-Inf,
30000.0)
# Put new values in the A matrix
let arowsub = [1, 2, 3, 4 ],
arowval = [1.0, 2.0, 1.0, 1.0]
putarow(task,conidx, # row index
arowsub,
arowval)
end
Again, we can continue with re-optimizing the modified problem.
6.11.5 Changing bounds¶
One typical reoptimization scenario is to change bounds. Suppose for instance that we must operate with limited time resources, and we must change the upper bounds in the problem as follows:
Operation |
Time available (before) |
Time available (new) |
---|---|---|
Assembly |
100000 |
80000 |
Polishing |
50000 |
40000 |
Packing |
60000 |
50000 |
Quality control |
30000 |
22000 |
That means we would like to solve the problem:
In this case all we need to do is redefine the upper bound vector for the constraints, as shown in the next listing.
let newbkc = [MSK_BK_UP,
MSK_BK_UP,
MSK_BK_UP,
MSK_BK_UP],
newblc = [ -Inf,
-Inf,
-Inf,
-Inf],
newbuc = [ 80000.0, 40000.0, 50000.0, 22000.0 ]
putconboundslice(task,1, numcon+1, newbkc, newblc, newbuc)
end
Again, we can continue with re-optimizing the modified problem.
6.11.6 Advanced hot-start¶
If the optimizer used the data from the previous run to hot-start the optimizer for reoptimization, this will be indicated in the log:
Optimizer - hotstart : yes
When performing re-optimizations, instead of removing a basic variable it may be more efficient to fix the variable at zero and then remove it when the problem is re-optimized and it has left the basis. This makes it easier for MOSEK to restart the simplex optimizer.