mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 04:56:03 +00:00
3 lines
No EOL
132 B
Text
3 lines
No EOL
132 B
Text
(define-funs-rec ((g ((a Int) (b Int)) Bool)) ((or (= a b) (ite (> a b) (g (- a 1) b) (g a (- b 1))))))
|
|
(assert (g 2 2))
|
|
(check-sat) |