summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/model001.smt2
blob: e4e35f40d7d5a1a4ac6ef19addf92fb485886907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-logic ALL_SUPPORTED)
(set-info :status sat)
(set-option :produce-models true)

(declare-fun x () String)
(declare-fun y () String)

(assert (not (= x y)))
(assert (= (str.len x) (str.len y)))

(check-sat)
;(get-model)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback