Cplex中的上限和下限等于0.0(在cplex java中)

时间:2014-09-16 16:28:14

标签: java nullpointerexception cplex

我有一个循环,有时 UpperBound 和下限为0.0 那时我不想在下面执行。

Test[index]=cplex.numVar(0.0, upperBound);

我可以跳过这个但是在测试[索引] null将被保存,因为下面的代码具有下面的代码将给出空指针异常。

constraint.addTerm(RezCapZZ[index ], 1);

如何在不执行UB和LB等于0.0的情况下继续进行。需要找到一种方法,以便第二种方法不会抛出空指针异常。

为什么我这样做是因为我们需要节省 cplex 不必要的0计算内存。

第一种方法:

            for (int y = 0; y < 3; y++) {
                for (int r = 0; r < 3; r++) {
                    for (int oc = 0; oc < 3; oc++) {
                        for(int dc=0; dc < 3 ;dc++){
                                        UB=  0.0;
                                        int index = y*3*3*3 + r*3*3 + oc*3 + dc;
                                        Test[index]  = cplex.numVar(0.0, UB);
                                        System.out.println("Value of Test is : " + Test[index]);

                        }
                    }
                }
            }

此处Test [index]的类型为 IloNumVar [] Test = new IloNumVar [3 * 3 * 3 * 3];

第二种方法:

for (int l = 0; l < 3; l++) {
                            for (int y = 0; y < 3; y++) {
                                for (int r = 0; r < 3; r++) {
                                    for(int oc=0; oc< 3 ; oc++){
                                        index =  l*3*3*3 + y*3*3 + r*3 + oc;

                                        **constraint.addTerm(Test[index ], 1);**

                                    }
                                }
                            }
                        }

此约束为 IloLinearNumExpr constraint = cplex.linearNumExpr();

1 个答案:

答案 0 :(得分:0)

在第一种方法中添加支票:

if( 0.0 == UB || 0.0 == UB ) {
    continue;
}

并在第二种方法中添加一项检查:

if( null == Test[index] ) {
   continue;
}