summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug544.smt2
blob: ec2ef0075ac551d759bb8515877bde21780ec634 (plain)
1
2
3
4
5
6
7
8
9
10
; EXPECT: sat
; EXPECT: (((not (select a x)) false))
(set-option :produce-models true)
(set-logic QF_AUFLIA)
(declare-sort U 0)
(declare-fun x () U)
(declare-fun a () (Array U Bool))
(assert (select a x))
(check-sat)
(get-value ((not (select a x))))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback