3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 01:11:55 +00:00

More work on trailing 0 analysis.

This commit is contained in:
mikolas 2016-04-04 11:31:23 +01:00 committed by Mikolas Janota
parent ddb6ae4eab
commit fced47386e
3 changed files with 4 additions and 4 deletions

View file

@ -23,6 +23,7 @@ Notes:
#include"bv_decl_plugin.h"
#include"arith_decl_plugin.h"
#include"mk_extract_proc.h"
#include"bv_trailing.h"
class bv_rewriter_core {
protected:
@ -47,6 +48,7 @@ public:
class bv_rewriter : public poly_rewriter<bv_rewriter_core> {
mk_extract_proc m_mk_extract;
bv_trailing m_rm_trailing;
arith_util m_autil;
bool m_hi_div0;
bool m_elim_sign_ext;
@ -138,6 +140,7 @@ public:
bv_rewriter(ast_manager & m, params_ref const & p = params_ref()):
poly_rewriter<bv_rewriter_core>(m, p),
m_mk_extract(m_util),
m_rm_trailing(m_mk_extract),
m_autil(m) {
updt_local_params(p);
}