summaryrefslogtreecommitdiff
path: root/examples/nra-translate/nra-translate-example-input.smt2
blob: 229c46d4a554ef78b4643270f1f838f601ad08bd (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic QF_NRA)
(set-info :smt-lib-version 2.0)
(set-info :status sat)
(declare-fun x () Real)
(declare-fun y () Real)
(declare-fun n () Real)

(assert (= (+ x n) 0))
(assert (= (+ y n) 1))

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