summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/rev-ex4.smt2
blob: a3eed8e351f5de00accabb5a9fde4a74b5bbc960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --strings-exp --strings-fmf
; EXPECT: unsat
(set-logic ALL)
(set-info :status unsat)
(declare-fun x () String)
(declare-fun y () String)
(declare-fun z () String)
(declare-fun w () String)
(assert (= x (str.rev y)))
(assert (= y (str.rev z)))
(assert (distinct x z w))
(assert (< (str.len x) 2))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback