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.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/preprocessing/passes/bool_to_bv.cpp b/src/preprocessing/passes/bool_to_bv.cpp
index a789a0d0b..206f12a3f 100644
--- a/src/preprocessing/passes/bool_to_bv.cpp
+++ b/src/preprocessing/passes/bool_to_bv.cpp
@@ -20,6 +20,7 @@
#include "base/map_util.h"
#include "expr/node.h"
+#include "options/bv_options.h"
#include "preprocessing/assertion_pipeline.h"
#include "preprocessing/preprocessing_pass_context.h"
#include "smt/smt_statistics_registry.h"
@@ -35,7 +36,7 @@ using namespace cvc5::theory;
BoolToBV::BoolToBV(PreprocessingPassContext* preprocContext)
: PreprocessingPass(preprocContext, "bool-to-bv"), d_statistics()
{
- d_boolToBVMode = options::boolToBitvector();
+ d_boolToBVMode = options().bv.boolToBitvector;
};
PreprocessingPassResult BoolToBV::applyInternal(
@@ -50,7 +51,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 +60,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