this repo has no description
at develop 422 B view raw
1% testing the poisson distribution for both float and integer means 2var int: x; 3var int: y; 4int: myInt1 = discrete_distribution([0,0,0,2,4,5,0,9,6]); % the weights for each integer, starting from zero 5int: myInt2; 6myInt2 = discrete_distribution([6,7,4,2]); % the weights for each integer, starting from zero 7constraint x + y < myInt1; 8constraint x + y > myInt2; 9 10solve satisfy; 11output ["x = ", show(x), "\ny = ", show(y)];