summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/choose1.smt2
blob: 420a0fde0cd5da5f6a76cc1f9b4d31acf42bedf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
; COMMAND-LINE: --no-check-models
(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 emptyset (Set Int)))))
(assert (= (choose A) 10))
(assert (= a (choose A)))
(assert (exists ((x Int)) (and (= x (choose A)) (= x a))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback