AMPL - 具有最大功能的快速总和

时间:2016-10-23 14:29:40

标签: ampl gurobi

我需要在我的.mod中声明这个图像作为"受制于"但我不知道该怎么做。有人可以向我解释一下吗?我的主要问题是max {0,t-4}。

here

我试过了:

    set ANY_INICI:=1..10;
    subject to constr{t in 1 .. 10}:
        sum {j in max(0,t-4)+1 .. ANY_INICI, i in t-j+1 .. 4} decisio[i,j]>=restriccio[t];

1 个答案:

答案 0 :(得分:0)

正确的形式是:

t迭代ANY_INICI,1..10等于ANY_INICI param

Dim criteria As Double
criteria = 0.5

Cells(2, 2).Value = Application.CountIf(Range("c1:c4"), ">" & criteria) 'returns 0 (why?)

Cells(3, 2).Value = Application.CountIf(Range("c1:c4"), ">0.5") 'returns 2 (OK)