summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/bool_to_bv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/bool_to_bv.cpp')
-rw-r--r--src/preprocessing/passes/bool_to_bv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preprocessing/passes/bool_to_bv.cpp b/src/preprocessing/passes/bool_to_bv.cpp
index a789a0d0b..f5152f0d2 100644
--- a/src/preprocessing/passes/bool_to_bv.cpp
+++ b/src/preprocessing/passes/bool_to_bv.cpp
@@ -50,7 +50,7 @@ PreprocessingPassResult BoolToBV::applyInternal(
for (size_t i = 0; i < size; ++i)
{
Node newAssertion = lowerAssertion((*assertionsToPreprocess)[i], true);
- assertionsToPreprocess->replace(i, Rewriter::rewrite(newAssertion));
+ assertionsToPreprocess->replace(i, rewrite(newAssertion));
}
}
else
@@ -59,7 +59,7 @@ PreprocessingPassResult BoolToBV::applyInternal(
for (size_t i = 0; i < size; ++i)
{
assertionsToPreprocess->replace(
- i, Rewriter::rewrite(lowerIte((*assertionsToPreprocess)[i])));
+ i, rewrite(lowerIte((*assertionsToPreprocess)[i])));
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback