A set of benchmarks to compare a new prototype MiniZinc implementation
1% testing the binomial distribution for both float and integer means 2var int: x; 3var int: y; 4int: myInt1 = binomial(10,0.5); 5int: myInt2; 6myInt2 = binomial(2,0.3); 7constraint x + y < myInt1; 8constraint x + y > myInt2; 9 10solve satisfy; 11output ["x = ", show(x), "\ny = ", show(y)];