summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/leq.smt2
blob: b3bd407397c918f50983cc450d5c7ed452f85f6a (plain)
1
2
3
4
5
6
7
8
9
10
; COMMAND-LINE: --strings-exp
(set-logic QF_SLIA)
(declare-const x String)
(declare-const y String)
(assert (or
  (not (str.<= (str.++ "A" x) (str.++ "B" y)))
  (not (str.<= (str.++ "A" x) (str.++ "BC" y)))
  (str.<= (str.++ "A" "D" x) (str.++ "AC" y))))
(set-info :status unsat)
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback