mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-05 19:00:33 -05:00
12 lines
253 B
Text
12 lines
253 B
Text
(set-logic QF_LRA)
|
|
(set-info :status unsat)
|
|
(declare-fun a () Real)
|
|
(declare-fun b () Real)
|
|
(declare-fun p1 () Bool)
|
|
(declare-fun p2 () Bool)
|
|
|
|
(assert (<= a b))
|
|
(assert (= p1 (>= a 1)))
|
|
(assert (= p2 (<= b (/ 1 2))))
|
|
(check-sat-assuming (p1 p2))
|
|
(exit)
|