-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtoto4.smt2
More file actions
41 lines (34 loc) · 895 Bytes
/
toto4.smt2
File metadata and controls
41 lines (34 loc) · 895 Bytes
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
41
(set-info :smt-lib-version 2.6)
(set-logic QF_NRA)
(set-info :source |
These benchmarks used in the paper:
Dejan Jovanovic and Leonardo de Moura. Solving Non-Linear Arithmetic.
In IJCAR 2012, published as LNCS volume 7364, pp. 339--354.
The meti-tarski benchmarks are proof obligations extracted from the
Meti-Tarski project, see:
B. Akbarpour and L. C. Paulson. MetiTarski: An automatic theorem prover
for real-valued special functions. Journal of Automated Reasoning,
44(3):175-205, 2010.
Submitted by Dejan Jovanovic for SMT-LIB.
|)
(set-info :category "industrial")
(set-info :status unsat)
(declare-fun skoX () Real)
(declare-fun skoY () Real)
(declare-fun skoZ () Real)
(assert
(and
(<= (* skoZ (* skoY (* skoX (/ 1 2)))) (/ (- 1) 4))
(and
(<= skoZ 2)
(and
(<= skoY 2)
(and
(<= skoX 2)
(and
(<= 1 skoZ)
(and
(<= 1 skoY)
(<= 1 skoX))))))))
(check-sat)
(exit)