mirror of
https://github.com/AdaCore/cvc5.git
synced 2026-02-12 12:32:16 -08:00
9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
(set-logic QF_LIA)
|
|
(declare-fun a () Int)
|
|
(declare-fun b () Int)
|
|
(declare-fun c () Int)
|
|
(assert (> a (+ b c)))
|
|
(assert (< a b))
|
|
(assert (> c 0))
|
|
(check-sat)
|