summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index 899d035ea..04b6c5d16 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -247,6 +247,10 @@ bool QuantifiersEngine::hasOwnership( Node q, QuantifiersModule * m ) {
void QuantifiersEngine::check( Theory::Effort e ){
CodeTimer codeTimer(d_time);
+ if( !getMasterEqualityEngine()->consistent() ){
+ Trace("quant-engine-debug") << "Master equality engine not consistent, return." << std::endl;
+ return;
+ }
bool needsCheck = false;
bool needsModel = false;
bool needsFullModel = false;
@@ -280,10 +284,6 @@ void QuantifiersEngine::check( Theory::Effort e ){
Trace("quant-engine-ee") << "Equality engine : " << std::endl;
debugPrintEqualityEngine( "quant-engine-ee" );
- if( !getMasterEqualityEngine()->consistent() ){
- Trace("quant-engine") << "Master equality engine not consistent, return." << std::endl;
- return;
- }
Trace("quant-engine-debug") << "Resetting all modules..." << std::endl;
//reset relevant information
d_conflict = false;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback