Blame view

Debug/src/utils/flatzinc/tests/int_ne.fzn 243 Bytes
4d26a735   Pedro Roque   Increased recogni...
1
2
3
4
5
6
7
8
9
10
11
% RUNS ON flatzinc
% RUNS ON fzn_fd_canon
% RUNS ON fzn_fdlp_canon
% RUNS ON fzn_lazyfd_canon

var 0..2: x1 :: output_var;
var 2..4: x2 :: output_var;
constraint int_ne(3, 4);
constraint int_ne(1, 0);
constraint int_ne(x1, x2);
solve satisfy;