summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index 033a50916..94fc1e34c 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -338,7 +338,7 @@ void TheoryBV::check(Effort e)
std::vector<TNode> assertions;
while (!done()) {
- TNode fact = get().assertion;
+ TNode fact = get().d_assertion;
Assert(fact.getKind() == kind::BITVECTOR_EAGER_ATOM);
assertions.push_back(fact);
d_eagerSolver->assertFormula(fact[0]);
@@ -369,7 +369,7 @@ void TheoryBV::check(Effort e)
}
while (!done()) {
- TNode fact = get().assertion;
+ TNode fact = get().d_assertion;
checkForLemma(fact);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback