2

我是 cplex 的新手。在我的 ilp 中,我有几个 if-else 语句。我想使用 cplex 使用 java API 解决我的问题。我不知道如何在 cplex 中制定 if-else。例子:

if x>0 then a=1
else if x=0 then a=0
4

1 回答 1

5

我不认为 Java API 支持 if/then/else 结构,但是可以执行 if/then

IloCplex cplex = new IloCplex();
IloNumVar x = cplex.numVar(-100, 100);
IloNumVar a = cplex.intVar(0, 1);

cplex.ifThen(cplex.ge(x, 100), cplex.eq(a, 1));
cplex.ifThen(cplex.eq(x, 0), cplex.eq(a, 0));
于 2012-11-12T09:06:39.850 回答