summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-04-14 14:38:01 -0500
committerGitHub <noreply@github.com>2020-04-14 14:38:01 -0500
commite7546557861686126b86a94fe797701afb1be4cd (patch)
tree313a67cb1349294f72e2024f0219afa86801292d /src/theory/quantifiers/sygus
parentec83ced90e3c4db2b2b31458628a1957fc684484 (diff)
Remove a few spurious assertions (#4294)
Fixes #4290 and fixes #4292.
Diffstat (limited to 'src/theory/quantifiers/sygus')
-rw-r--r--src/theory/quantifiers/sygus/sygus_process_conj.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/sygus_process_conj.cpp b/src/theory/quantifiers/sygus/sygus_process_conj.cpp
index 66e80523a..1b3844578 100644
--- a/src/theory/quantifiers/sygus/sygus_process_conj.cpp
+++ b/src/theory/quantifiers/sygus/sygus_process_conj.cpp
@@ -68,7 +68,7 @@ bool SynthConjectureProcessFun::checkMatch(
Node cn_subs =
cn.substitute(vars.begin(), vars.end(), subs.begin(), subs.end());
cn_subs = Rewriter::rewrite(cn_subs);
- Assert(Rewriter::rewrite(n) == n);
+ n = Rewriter::rewrite(n);
return cn_subs == n;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback