summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_database.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-02-19 15:15:22 -0600
committerGitHub <noreply@github.com>2020-02-19 15:15:22 -0600
commitc6a9ab9da205df7cbf192edc142ee151404dcb1b (patch)
tree42f2fe5f76f7be0b112882c65b254729de5bdc5e /src/theory/quantifiers/term_database.cpp
parentbe2ee6f3ea202812a9ddecfad3a8eeddfd44db3e (diff)
Delay enumerative instantiation if theory engine does not need check (#3774)
Diffstat (limited to 'src/theory/quantifiers/term_database.cpp')
-rw-r--r--src/theory/quantifiers/term_database.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/term_database.cpp b/src/theory/quantifiers/term_database.cpp
index 524c440ba..b78263f0e 100644
--- a/src/theory/quantifiers/term_database.cpp
+++ b/src/theory/quantifiers/term_database.cpp
@@ -403,7 +403,7 @@ void TermDb::computeUfTerms( TNode f ) {
{
Trace("term-db-lemma") << "Disequal congruent terms : " << at << " "
<< n << "!!!!" << std::endl;
- if (!d_quantEngine->getTheoryEngine()->needCheck())
+ if (!d_quantEngine->theoryEngineNeedsCheck())
{
Trace("term-db-lemma") << " all theories passed with no lemmas."
<< std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback