summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bags/fuzzy5.smt2
blob: 0674fad9c06a5a737bf0f100a501d2a2e94c6535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(set-logic ALL)
(set-option :produce-models true)
(set-info :status sat)
(declare-fun A () (Bag (Tuple Int Int)))
(declare-fun c () Int)
(declare-fun d () (Tuple Int Int))

(assert
 (let ((c_plus_1 (+ c 1)))
   (and
    (not
     (= (= A (bag (tuple 0 c) (+ c c)))
        (= A (bag.difference_remove (bag d c) A))))
    (not
     (= (= A (bag (tuple 0 1) c_plus_1))
        (= A (bag (tuple c 1) c_plus_1)))))))

;(assert (= A (bag (tuple 0 1) 2)))
;(assert (= c 1))
;(assert (= d (tuple 0 1)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback