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.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/valuation.cpp b/src/theory/valuation.cpp
index 0aefd7f21..5002c8a59 100644
--- a/src/theory/valuation.cpp
+++ b/src/theory/valuation.cpp
@@ -27,6 +27,10 @@ Node Valuation::getValue(TNode n) const {
return d_engine->getValue(n);
}
+bool Valuation::isSatLiteral(TNode n) const {
+ return d_engine->getPropEngine()->isSatLiteral(n);
+}
+
bool Valuation::hasSatValue(TNode n, bool& value) const {
return d_engine->getPropEngine()->hasValue(n, value);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback