mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 20:46:01 +00:00
2 lines
No EOL
103 B
Text
2 lines
No EOL
103 B
Text
(define-funs-rec ((simple ((x Int)) Int)) ((ite (= x 0) 0 (simple (- x 1)))))
|
|
(assert (= (simple 1) 0)) |