Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

(declare-fun x (Int) Int)

(declare-fun y (Int) Int)


(declare-fun w (Int) Int)

(define-fun f ((x Int) (y Int)) Int (+ x y))

(assert (
forall ((t Int)) (=>
(and (<= t 2) (>= t 0)) (>= (+ (x t) (y t)) 2)
)
))
(assert (= (w 1) (f (x 1) (y 1))))
(check-sat)

You might also like