summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug322.cvc.smt2
blob: 62c04579cbf1ac37e3ed25fb1e496e202e85e5b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; EXPECT: sat
(set-logic ALL)
(set-option :incremental false)
(declare-datatypes ((UNIT 0)) (((Unit))))
(declare-datatypes ((BOOL 0)) (((Truth) (Falsity))))
(declare-sort node$type 0)
(declare-sort value$type 0)

(declare-sort Nodes$t$type 0)


(define-fun is_faulty ((p node$type) (deliver (Array node$type (Array node$type BOOL)))) BOOL (ite (exists ((q node$type)) (not (= (select (select deliver p) q) Truth))) Truth Falsity))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback