summaryrefslogtreecommitdiff
path: root/test/regress
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2021-06-02 12:41:14 -0700
committerGitHub <noreply@github.com>2021-06-02 19:41:14 +0000
commit9258aa062ebefb8af7727567470f9a387181d466 (patch)
tree7536a3775b50dd78f978e5a0d982f64182273651 /test/regress
parent85a300898d7815973c064fe2c7b5b33473a71a5c (diff)
Remove option to ignore negative memberships (#6665)
Fixes #6661. The option `--strings-inm` could be used to ignore negative membership constraints. However, this option made the string solver model-unsound or produced incorrect models if the user provided a benchmark that actually contained negative membership constraints. The solver did not check for negative membership constraints and did not warn the user about them. Because the option is not really being used, this commit removes it.
Diffstat (limited to 'test/regress')
-rw-r--r--test/regress/regress1/strings/regexp002.smt24
1 files changed, 0 insertions, 4 deletions
diff --git a/test/regress/regress1/strings/regexp002.smt2 b/test/regress/regress1/strings/regexp002.smt2
index 35501ac10..7bb4e8aca 100644
--- a/test/regress/regress1/strings/regexp002.smt2
+++ b/test/regress/regress1/strings/regexp002.smt2
@@ -2,10 +2,6 @@
(set-logic QF_S)
(set-info :status sat)
(set-option :strings-exp true)
-; this option requires user to check whether the constraint is in the fragment
-; currently we do not provide only positive membership constraint checking
-; if users use this option but the constraint is not in this fragment, the result will fail
-(set-option :strings-inm true)
(declare-fun x () String)
(declare-fun y () String)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback