summaryrefslogtreecommitdiff
path: root/test/regress/regress0/fmf/no-minimal-sat.smt2
blob: dfb7899cea4f129c0c0a22f889c7e5d3a010a035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; COMMAND-LINE: --finite-model-find --uf-ss=no-minimal
; EXPECT: sat
(set-logic UF)
(set-info :status sat)
; generated by Nunchaku
(declare-sort i_ 0)
(declare-fun i2_ () i_)
(declare-fun i1_ () i_)
(declare-fun i3_ () i_)
(assert (and (not (= i2_ i3_)) (not (= i1_ i2_)) (not (= i1_ i3_))))
(declare-fun i4_ () i_)
(declare-fun i5_ () i_)
(declare-fun i6_ () i_)
(assert (distinct i4_ i5_ i6_))
(declare-fun P (i_) Bool)
(declare-fun f (i_) i_)
(assert (forall ((x i_)) (P (f x))))
(check-sat)

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback