0

我找到了用 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 的当前函数是什么?

4

1 回答 1

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的约束。

进一步阅读和资源:

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

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

尤其是变量表达式的测试可能对您来说很有趣。

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

于 2017-12-02T07:46:15.820 回答