summaryrefslogtreecommitdiff
path: root/src/theory/valuation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/valuation.cpp')
-rw-r--r--src/theory/valuation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/valuation.cpp b/src/theory/valuation.cpp
index 627125a27..5eb4f0dc7 100644
--- a/src/theory/valuation.cpp
+++ b/src/theory/valuation.cpp
@@ -79,9 +79,9 @@ Node Valuation::getSatValue(TNode n) const {
}
bool Valuation::hasSatValue(TNode n, bool& value) const {
- Node normalized = Rewriter::rewrite(n);
- if (d_engine->getPropEngine()->isSatLiteral(normalized)) {
- return d_engine->getPropEngine()->hasValue(normalized, value);
+ // Node normalized = Rewriter::rewrite(n);
+ if (d_engine->getPropEngine()->isSatLiteral(n)) {
+ return d_engine->getPropEngine()->hasValue(n, value);
} else {
return false;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback