1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
207 B
MiniZinc

function int: tak(int: x, int: y, int: z) =
if y < x then
tak(tak(x-1,y,z), tak(y-1,z,x), tak(z-1,x,y))
else z endif;
constraint forall (i in 1..1000) (let {int: comp = tak(18, 12, 6); } in true );