Blame view

Debug/src/utils/flatzinc/tests/bool_le.fzn 364 Bytes
4d26a735   Pedro Roque   Increased recogni...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
% RUNS ON flatzinc
% RUNS ON fzn_bdd_canon
% RUNS ON fzn_fd_canon
% RUNS ON fzn_fdlp_canon
% RUNS ON fzn_lazyfd_canon
% RUNS ON fzn_lp_canon
% RUNS ON fzn_sat_canon

var bool: x1 :: output_var;
var bool: x2 :: output_var;
constraint bool_le(false, false);
constraint bool_le(false, true);
constraint bool_le(true, true);
constraint bool_le(x1, x2);
solve satisfy;