如果你也举一个正面的例子,而不仅仅是一个负面的例子,这会有所帮助。
我可能错过了需求/定义中的某些内容,但这是在约束编程 (CP) 系统 MiniZinc ( http://minizinc.org/ ) 中执行此操作的一种方法。它不使用 CP 系统特有的任何特定约束——可能除了函数语法之外,因此应该可以将其转换为其他 CP 或 IP 系统。
% dimensions
int: rows = 3;
int: cols = 4;
% the matrix
array[1..rows, 1..cols] of int: M = array2d(1..rows,1..cols,
[0, 1, 1, 1,
1, 0, 1, 1,
1, 1, 0, 1,
] );
% function for matrix multiplication: res = matrix x vec
function array[int] of var int: matrix_mult(array[int,int] of var int: m,
array[int] of var int: v) =
let {
array[index_set_2of2(m)] of var int: res; % result
constraint
forall(i in index_set_1of2(m)) (
res[i] = sum(j in index_set_2of2(m)) (
m[i,j]*v[j]
)
)
;
} in res; % return value
solve satisfy;
constraint
% M x v = 0
matrix_mult(M, v) = [0 | j in 1..cols] /\
sum(i in 1..cols) (abs(v[i])) != 0 % non-zero vector
;
output
[
"v: ", show(v), "\n",
"M: ",
]
++
[
if j = 1 then "\n" else " " endif ++
show(M[i,j])
| i in 1..rows, j in 1..cols
];
通过更改“M”的定义以使用域为 0..1 的决策变量而不是常量:
array[1..rows, 1..cols] of var 0..1: M;
那么这个模型产生 18066 个不同的解决方案,例如这两个:
v: [-1, 1, 1, 1]
M:
1 0 0 1
1 1 0 0
1 0 0 1
----------
v: [-1, 1, 1, 1]
M:
0 0 0 0
1 0 1 0
1 0 0 1
注意:在 CP 系统中生成所有解决方案可能比在传统 MIP 系统中更常见(这是我非常欣赏的一个功能)。