summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/is-even-pred.smt2
blob: 9808f4936dd84d65e2afe54649ae6167b0528c9b (plain)
1
2
3
4
5
6
7
(set-logic ALL_SUPPORTED)
(set-info :status unsat)

(define-funs-rec ((is-even ((x Int)) Bool) (is-odd ((x Int)) Bool)) ((or (= x 0) (is-odd (- x 1))) (and (not (= x 0)) (is-even (- x 1)))))

(assert (is-even 5))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback