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
153 B
MiniZinc

function int: fib(int: n) =
if n <= 1 then n
else fib(n-1) + fib(n-2) endif;
constraint forall(i in 1..1000) (let {int: comp = fib(23);} in true);