如何在不同步骤中运行优化问题?

问题描述 投票:2回答:1

我在AMPL中有一个优化问题。想知道如何在不同步骤中使用自己的算法进行优化?我应该使用AMPL还是python或其他软件?

这是我想做的:

我想逐层搜索可行的统治。例如,如果我的问题在3维上,我想在3层中进行搜索,例如:

first layer :  x1+x2+x3=1

second layer:  x1+x2+x3=2

third layer:    x1+x2+x3=3

在每一层中,我都有一些新的约束,当在该层中进行搜索时,这些约束将处于活动状态。假设C1C2C3分别是第1,2和3层的约束。我希望问题按如下方式运行:

首先运行在第一层,并且C1必须处于活动状态:

          `x1+x2+x3=1`   and `C1`     are active.  (the constraints C2 ,C3 and 2 other layers are non-active)

然后在第二层中运行,并且C2必须处于活动状态:

          `x1+x2+x3=2`   and `C2`     are active.  (the constraints C1 ,C3 and 2 other layers are non-active)

第三层运行在第三层,并且C3必须处于活动状态:

          `x1+x2+x3=3`   and `C3`     are active.  (the constraints C1 ,C2 and 2 other layers are non-active)
python optimization ampl
1个回答
1
投票

您可以使用脚本在AMPL中执行此操作。例如:

reset;
option solver gurobi;
param n_x := 3;
var x{1..n_x};

param bignum := 1e4;

param layer;
set layers := 1..n_x;

s.t. sum_constraint: x[1] + x[2] + x[3] = layer;

s.t. c1a: x[1] >= (if layer = 1 then 10 else 10-bignum);
s.t. c1b: x[1] <= (if layer = 1 then 10 else 10+bignum);
# on layer 1, constrain x[1] = 10, otherwise leave it effectively unconstrained

s.t. c2a: x[2] >= (if layer = 2 then 20 else 20-bignum);
s.t. c2b: x[2] <= (if layer = 2 then 20 else 20+bignum);

s.t. c3a: x[3] >= (if layer = 3 then 30 else 30-bignum);
s.t. c3b: x[3] <= (if layer = 3 then 30 else 30+bignum);


minimize of: x[1]^2+x[2]^2+x[3]^2;

for {i in layers}{
    let layer := i;
    printf "\nLayer = %1.0f\n", layer; 
    solve;
    display x;
}

您还可以使用droprestore语句来打开和关闭约束,这取决于要自动执行多少约束。

© www.soinside.com 2019 - 2024. All rights reserved.