summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_to_bool.cpp
diff options
context:
space:
mode:
authorLiana Hadarean <lianahady@gmail.com>2013-04-16 11:17:36 -0400
committerlianah <lianahady@gmail.com>2013-04-30 15:54:24 -0400
commitcf99724618884765ce692cec8916d80607de4026 (patch)
treed80b5851d897942a53aec6011b95a4c443c0861e /src/theory/bv/bv_to_bool.cpp
parent95a876e4931b94ab97ff40988ce23e34a046387d (diff)
fixed compile error
Diffstat (limited to 'src/theory/bv/bv_to_bool.cpp')
-rw-r--r--src/theory/bv/bv_to_bool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/bv/bv_to_bool.cpp b/src/theory/bv/bv_to_bool.cpp
index 7d3f58c8e..44c4bd021 100644
--- a/src/theory/bv/bv_to_bool.cpp
+++ b/src/theory/bv/bv_to_bool.cpp
@@ -241,7 +241,7 @@ bool BvToBoolPreprocessor::matchesBooleanPatern(TNode current) {
}
-void BvToBoolPreprocessor::liftBoolToBV(const std::vector<TNode>& assertions, std::vector<Node>& new_assertions) {
+void BvToBoolPreprocessor::liftBoolToBV(const std::vector<Node>& assertions, std::vector<Node>& new_assertions) {
TNodeNodeMap candidates;
for (unsigned i = 0; i < assertions.size(); ++i) {
if (matchesBooleanPatern(assertions[i])) {
@@ -249,7 +249,7 @@ void BvToBoolPreprocessor::liftBoolToBV(const std::vector<TNode>& assertions, st
TNode bv_var = assertion[0][0];
Assert (bv_var.getKind() == kind::VARIABLE &&
bv_var.getType().isBitVector() &&
- bv_bar.getType().getBitVectorSize() == 1);
+ bv_var.getType().getBitVectorSize() == 1);
TNode bool_cond = assertion[1];
Assert (bool_cond.getType().isBoolean());
if (candidates.find(bv_var) == candidates.end()) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback