summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/quantifiers/theory_quantifiers.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/theory/quantifiers/theory_quantifiers.cpp b/src/theory/quantifiers/theory_quantifiers.cpp
index b5287fff4..2e33c7c4a 100644
--- a/src/theory/quantifiers/theory_quantifiers.cpp
+++ b/src/theory/quantifiers/theory_quantifiers.cpp
@@ -94,7 +94,11 @@ Node TheoryQuantifiers::getValue(TNode n) {
void TheoryQuantifiers::collectModelInfo( TheoryModel* m, bool fullModel ){
for(assertions_iterator i = facts_begin(); i != facts_end(); ++i) {
- m->assertPredicate(*i, true);
+ if((*i).assertion.getKind() == kind::NOT) {
+ m->assertPredicate((*i).assertion[0], false);
+ } else {
+ m->assertPredicate(*i, true);
+ }
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback