projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ccca2e7
)
Only register sygus terms to unfold if option is set (#3978)
author
Andrew Reynolds
<andrew.j.reynolds@gmail.com>
Tue, 10 Mar 2020 05:35:31 +0000
(
00:35
-0500)
committer
GitHub
<noreply@github.com>
Tue, 10 Mar 2020 05:35:31 +0000
(22:35 -0700)
Fixes #3953.
src/theory/quantifiers_engine.cpp
patch
|
blob
|
history
diff --git
a/src/theory/quantifiers_engine.cpp
b/src/theory/quantifiers_engine.cpp
index f6c17ebf92c8bc2d3cdbced8330b71a9fbfed709..ed4a79808c0d3569286bdab661bb75a4db94aacc 100644
(file)
--- a/
src/theory/quantifiers_engine.cpp
+++ b/
src/theory/quantifiers_engine.cpp
@@
-990,7
+990,7
@@
void QuantifiersEngine::addTermToDatabase( Node n, bool withinQuant, bool within
if (!withinQuant)
{
- if (d_sygus_tdb)
+ if (d_sygus_tdb
&& options::sygusEvalUnfold()
)
{
d_sygus_tdb->getEvalUnfold()->registerEvalTerm(n);
}