You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[520] % z3release small.smt2
unsat
sat
[521] % cat small.smt2
(declare-fun c (Int) Int)
(define-fun e ((f Int) (a Int) (b Int)) Int (ite (= b 0) 0 (rem a b)))
(define-fun g ((c Int) (a Int) (b Int)) Int (ite (= b 0) a c))
(define-fun h ((f Int) (a Int) (b Int)) Int (g 0 (e f a (c b)) 0))
(assert (exists ((k Int)) (and (< k 0) (= k (h 1 k 0)))))
(check-sat)
(reset)
(define-fun c ((x Int)) Int (- 2))
(define-fun e ((f Int) (a Int) (b Int)) Int (ite (= b 0) 0 (rem a b)))
(define-fun g ((c Int) (a Int) (b Int)) Int (ite (= b 0) a c))
(define-fun h ((f Int) (a Int) (b Int)) Int (g 0 (e f a (c b)) 0))
(assert (exists ((k Int)) (and (< k 0) (= k (h 1 k 0)))))
(check-sat)
The text was updated successfully, but these errors were encountered:
Commit: cb041c1
OS: Ubuntu 18.04
The text was updated successfully, but these errors were encountered: