3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

rename bit_blaster class to bit_blaster_simplifier to avoid name clash

This commit is contained in:
Nikolaj Bjorner 2022-12-30 18:39:02 -08:00
parent 0d05e0649b
commit 5f6f2fc758
3 changed files with 9 additions and 9 deletions

View file

@ -21,14 +21,14 @@ Author:
#include "ast/simplifiers/dependent_expr_state.h"
class bit_blaster : public dependent_expr_simplifier {
class bit_blaster_simplifier : public dependent_expr_simplifier {
bit_blaster_rewriter m_rewriter;
unsigned m_num_steps = 0;
params_ref m_params;
public:
bit_blaster(ast_manager & m, params_ref const & p, dependent_expr_state& s):
bit_blaster_simplifier(ast_manager & m, params_ref const & p, dependent_expr_state& s):
dependent_expr_simplifier(m, s),
m_rewriter(m, p) {
updt_params(p);