this repo has no description
1/***
2!Test
3expected:
4- !Result
5 solution: !Solution
6 b1: false
7 b2: true
8***/
9
10% bug #1: the overloading was being handled wrongly, giving the wrong output
11% "b = true".
12predicate foo(set of int: x) = true;
13predicate foo(int: x) = false;
14var bool: b1 :: add_to_output = foo(3);
15var bool: b2 :: add_to_output = foo({42});
16solve satisfy;
17output ["b1 = ", show(b1), "; b2 = ", show(b2), "\n"];