Choco solver老班

时间:2017-11-28 13:42:01

标签: java solver choco

我发现这个代码用choco解算器来解决魔术方程序:

public static void main(String[] args) {
    int n = 4;
    System.out.println("Magic Square Problem with n = " + n);

    Problem myPb = new Problem();

    IntVar[] vars = new IntVar[n * n];
    for (int i = 0; i < n; i++)
        for (int j = 0; j < n; j++) {
        vars[i * n + j] = myPb.makeEnumIntVar("C" + i + "_" + j, 1, n * n);
    }
    IntVar sum = myPb.makeEnumIntVar("S", 1, n * n * (n * n + 1) / 2);

    myPb.post(myPb.eq(sum, n * (n*n + 1) / 2));
    for (int i = 0; i < n * n; i++)
        for (int j = 0; j < i; j++)
        myPb.post(myPb.neq(vars[i], vars[j]));

    int[] coeffs = new int[n];
    for (int i = 0; i < n; i++) {
       coeffs[i] = 1;
    }

    for (int i = 0; i < n; i++) {
    IntVar[] col = new IntVar[n];
    IntVar[] row = new IntVar[n];

    for (int j = 0; j < n; j++) {
        col[j] = vars[i * n + j];
        row[j] = vars[j * n + i];
    }

    myPb.post(myPb.eq(myPb.scalar(coeffs, row), sum));
    myPb.post(myPb.eq(myPb.scalar(coeffs, col), sum));

    myPb.solve();
}    

但是“问题”这个类似乎已被“模型”类所取代。 使用Model.intVar而不是Problem.makeEnumIntVar是否正确? 替换Problem.neq,Problem.eq和Problem.scalar的当前函数是什么?

1 个答案:

答案 0 :(得分:1)

看起来你有一些不推荐的代码。表达式

Problem.scalar and Problem.eq

可以表示为

int capacity = 34;  // max capacity
int[] volumes = new int[]{7, 5, 3};

 // Problem.scalar
model.scalar(new IntVar[]{obj1, obj2, obj3}, volumes, "=", capacity).post();

// Problem.eq   
model.arithm(obj1, "=", obj2).post(); 

例如,上面的代码表示标量乘积等于容量的约束, obj1 必须等于 obj2 。< / p>

进一步阅读和资源:

在这里,您将找到一些示例代码的最新教程: choco tutorial

最后,您还可以在github上查看测试用例:https://github.com/chocoteam/choco-solver/tree/master/src/test/java/org/chocosolver/solver

特别是对变量表达式的测试可能对你有用。

可以在此处找到更多代码示例: more code samples