Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 cplex 的新手。在我的 ilp 中,我有几个 if-else 语句。我想使用 cplex 使用 java API 解决我的问题。我不知道如何在 cplex 中制定 if-else。例子:
if x>0 then a=1 else if x=0 then a=0
我不认为 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));