summaryrefslogtreecommitdiff
path: root/src/theory/bv
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv')
-rw-r--r--src/theory/bv/bv_to_bool.cpp4
-rw-r--r--src/theory/bv/bv_to_bool.h2
2 files changed, 3 insertions, 3 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()) {
diff --git a/src/theory/bv/bv_to_bool.h b/src/theory/bv/bv_to_bool.h
index 9b1534b41..39c6b4251 100644
--- a/src/theory/bv/bv_to_bool.h
+++ b/src/theory/bv/bv_to_bool.h
@@ -65,7 +65,7 @@ public:
BvToBoolPreprocessor()
{}
~BvToBoolPreprocessor() {}
- void liftBoolToBV(const std::vector<TNode>& assertions, std::vector<Node>& new_assertions);
+ void liftBoolToBV(const std::vector<Node>& assertions, std::vector<Node>& new_assertions);
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback