summaryrefslogtreecommitdiff
path: root/src/theory/theory_state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_state.cpp')
-rw-r--r--src/theory/theory_state.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/theory_state.cpp b/src/theory/theory_state.cpp
index 8afe3be96..f22a652c0 100644
--- a/src/theory/theory_state.cpp
+++ b/src/theory/theory_state.cpp
@@ -125,5 +125,10 @@ void TheoryState::notifyInConflict() { d_conflict = true; }
bool TheoryState::isInConflict() const { return d_conflict; }
+bool TheoryState::isSatLiteral(TNode lit) const
+{
+ return d_valuation.isSatLiteral(lit);
+}
+
} // namespace theory
} // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback