summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uflra/constants0.smt
blob: b07a6bc4e43f565b7f4406d3050aec6857dbe234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(benchmark mathsat
:logic QF_UFLRA
:status unsat 
:category { crafted } 
:extrafuns ((f Real Real))
:extrafuns ((x Real))
:extrafuns ((y Real))
:formula
(and (or (= x 3) (= x 5))
     (or (= y 3) (= y 5))
     (not (= (f x) (f y)))
     (implies (= (f 3) (f x)) (= (f 5) (f x)))
     (implies (= (f 3) (f y)) (= (f 5) (f y)))
)
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback