this repo has no description
1% testing uniform distribution for integers 2var int: x; 3var int: y; 4int: myInt1 = uniform(7, 10); 5int: myInt2; 6myInt2 = uniform(2, 4); 7constraint x + y < myInt1; 8constraint x + y > myInt2; 9 10solve satisfy; 11output ["x = ", show(x), "\ny = ", show(y)];