this repo has no description
1/***
2--- !Test
3solvers: [gecode, chuffed]
4expected: !Result
5 solution: !Solution
6 x: 9
7 y: 2
8***/
9
10var 1..10: x;
11var 2..10: y;
12constraint x = 1 -> y > 10;
13constraint x > 1 -> x > 4;
14constraint x + y <= 11;
15
16solve :: int_search([x,y],smallest,indomain_min,complete)
17 maximize x + y;