summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/choose4.smt2
blob: 5590a0d5fcbfd630da43eb57412ef7769fab0c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
; COMMAND-LINE: --quiet
(set-logic ALL)
(set-info :status sat)
(set-option :produce-models true)
(declare-fun A () (Set Int))
(declare-fun a () Int)
(assert (not (= A (as set.empty (Set Int)))))
(assert (set.member 10 A))
(assert (= a (set.choose A)))
;(assert (exists ((x Int)) (and (= x (set.choose A)) (= x a))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback