summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/ilc-l-nt.smt2
blob: 9e1cc2bc592f91f4bc1b721c86035b177c8dd1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(set-logic ALL_SUPPORTED)
(set-info :status unsat)
(set-option :strings-exp true)
 
(declare-fun s () String)
(assert (or (= s "Id like cookies.") (= s "Id not like cookies.")))
 
(declare-fun target () String)
(assert (or (= target "l") (= target "m")))
 
(declare-fun location () Int)
(assert (= (* 2 location) (str.indexof s target 0)))
 
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback