summaryrefslogtreecommitdiff
path: root/test/regress/regress1/ho/ho-exponential-model.smt2
blob: 3f00118280c1271a8babdd1c23e262f42efb4610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
; COMMAND-LINE: --uf-ho
; EXPECT: sat
(set-logic UFLIA)
(set-info :status sat)
(declare-fun f1 (Int Int Int Int) Int)
(declare-fun f2 (Int Int Int) Int)
(declare-fun f3 (Int Int) Int)
(declare-fun f4 (Int) Int)
(declare-fun f5 (Int Int Int) Int)
(declare-fun f6 (Int Int) Int)
(declare-fun f7 (Int) Int)


(assert (= (f1 0) (f1 1)))
(assert (= (f1 1) f2))

(assert (= (f2 0) (f2 1)))
(assert (= (f2 1) f3))

(assert (= (f3 0) (f3 1)))
(assert (= (f3 1) f4))

(assert (= (f4 0) (f4 1)))
(assert (= (f4 1) 2))


(assert (= (f1 3) (f1 4)))
(assert (= (f1 4) f5))

(assert (= (f5 3) (f5 4)))
(assert (= (f5 4) f6))

(assert (= (f6 3) (f6 4)))
(assert (= (f6 4) f7))

(assert (= (f7 3) (f7 4)))
(assert (= (f7 4) 5))

; this benchmark has a concise model representation for f1 if we use curried (tree-like) models for UF
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback