Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/z3prover/z3test
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Dec 19, 2021
2 parents d65a671 + 9b0c1d4 commit ad9236f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
6 changes: 0 additions & 6 deletions regressions/issues/5693.smt2

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
unsat
unsat
14 changes: 14 additions & 0 deletions regressions/smt2/5693.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
(assert (let ((a!1 (re.++ (str.to_re "a")
(re.* (re.++ (str.to_re "b") (str.to_re "a")))))
(a!2 (re.++ (re.* (re.++ (str.to_re "a") (str.to_re "b")))
(str.to_re "a"))))
(distinct (re.++ a!1 a!1) (re.++ a!2 a!2))))
(check-sat)
(reset)
(declare-const s String)
(assert (let ((a!1 (re.++ (str.to_re "a")
(re.* (re.++ (str.to_re "b") (str.to_re "a")))))
(a!2 (re.++ (re.* (re.++ (str.to_re "a") (str.to_re "b")))
(str.to_re "a"))))
(str.in.re s (re.diff (re.++ a!1 a!1) (re.++ a!2 a!2)))))
(check-sat)

0 comments on commit ad9236f

Please sign in to comment.