summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-01-26 21:11:36 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-01-26 21:11:36 -0500
commit7528e6596c85abc337aa9c795fc2e7627255148e (patch)
tree0d3e38252d6f0805953138e68c8870a56d7fde36 /src/theory
parent6d71aac1070aa7b1a8575722f4022a04b57d5763 (diff)
parent5f58ecb6638f0e0fe63b67f1790b997684655bdd (diff)
Merge branch '1.0.x'
Diffstat (limited to 'src/theory')
-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