summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus
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/sygus
parentbe2ee6f3ea202812a9ddecfad3a8eeddfd44db3e (diff)
Delay enumerative instantiation if theory engine does not need check (#3774)
Diffstat (limited to 'src/theory/quantifiers/sygus')
-rw-r--r--src/theory/quantifiers/sygus/synth_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/synth_engine.cpp b/src/theory/quantifiers/sygus/synth_engine.cpp
index 2b621f6dd..c9ed16a5f 100644
--- a/src/theory/quantifiers/sygus/synth_engine.cpp
+++ b/src/theory/quantifiers/sygus/synth_engine.cpp
@@ -133,7 +133,7 @@ void SynthEngine::check(Theory::Effort e, QEffort quant_e)
activeCheckConj = acnext;
acnext.clear();
} while (!activeCheckConj.empty()
- && !d_quantEngine->getTheoryEngine()->needCheck());
+ && !d_quantEngine->theoryEngineNeedsCheck());
Trace("cegqi-engine")
<< "Finished Counterexample Guided Instantiation engine." << std::endl;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback