summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.cpp
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-05-16 18:18:35 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-05-16 18:18:35 -0400
commit647c6045788cd586c4534e0b63744bff4dd2f1ef (patch)
tree5288d6885e0e8b5b046908f36285b490aaacf859 /src/theory/theory_model.cpp
parent801e6b84901c76dbeaebe756397909b0db1ee947 (diff)
sets: fix a bug in model building, another in handling set of sets
Diffstat (limited to 'src/theory/theory_model.cpp')
-rw-r--r--src/theory/theory_model.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory_model.cpp b/src/theory/theory_model.cpp
index 203f116bb..6c0018c05 100644
--- a/src/theory/theory_model.cpp
+++ b/src/theory/theory_model.cpp
@@ -70,8 +70,8 @@ Node TheoryModel::getValue(TNode n) const {
//normalize
nn = Rewriter::rewrite(nn);
}
- Debug("model-getvalue") << "[model-getvalue] getValue( " << n << " ): returning"
- << nn << std::endl;
+ Debug("model-getvalue") << "[model-getvalue] getValue( " << n << " ): " << std::endl
+ << "[model-getvalue] returning " << nn << std::endl;
return nn;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback