summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/fmf001.smt2
blob: 6081c8e06e69ece8abc5651944918610149424ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(set-logic QF_S)
(set-option :strings-exp true)
(set-option :strings-fmf true)
(set-info :status sat)

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

(assert (str.in.re x
		(re.* (re.++ (re.* (str.to.re "a") ) (str.to.re "b") ))
	))

(assert (str.in.re y
		(re.* (re.++ (re.* (str.to.re "a") ) (str.to.re "b") ))
	))

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

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