summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/fmf/model_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/fmf/model_engine.cpp')
-rw-r--r--src/theory/quantifiers/fmf/model_engine.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/quantifiers/fmf/model_engine.cpp b/src/theory/quantifiers/fmf/model_engine.cpp
index 4012f687f..3fff374a7 100644
--- a/src/theory/quantifiers/fmf/model_engine.cpp
+++ b/src/theory/quantifiers/fmf/model_engine.cpp
@@ -182,6 +182,11 @@ int ModelEngine::checkModel(){
Trace("model-engine-debug") << " Term reps : ";
for( size_t i=0; i<it->second.size(); i++ ){
Node r = d_quantEngine->getInternalRepresentative( it->second[i], Node::null(), 0 );
+ if (r.isNull())
+ {
+ // there was an invalid equivalence class
+ d_incomplete_check = true;
+ }
Trace("model-engine-debug") << r << " ";
}
Trace("model-engine-debug") << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback