3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 10:20:23 +00:00

fix build warnings

This commit is contained in:
Nikolaj Bjorner 2025-04-14 10:33:14 -07:00
parent 5ad79f2864
commit 1510b3112e
7 changed files with 0 additions and 7 deletions

View file

@ -21,7 +21,6 @@ namespace sls {
bv_fixed::bv_fixed(bv_eval& ev, bv_terms& terms, sls::context& ctx) :
ev(ev),
terms(terms),
m(ev.m),
bv(ev.bv),
ctx(ctx)

View file

@ -29,7 +29,6 @@ namespace sls {
class bv_fixed {
bv_eval& ev;
bv_terms& terms;
ast_manager& m;
bv_util& bv;
sls::context& ctx;

View file

@ -24,7 +24,6 @@ Author:
namespace sls {
bv_terms::bv_terms(sls::context& ctx):
ctx(ctx),
m(ctx.get_manager()),
bv(m),
m_axioms(m) {}

View file

@ -29,7 +29,6 @@ Author:
namespace sls {
class bv_terms {
context& ctx;
ast_manager& m;
bv_util bv;
expr_ref_vector m_axioms;

View file

@ -125,7 +125,6 @@ namespace sls {
random_gen m_rand;
bool m_initialized = false;
bool m_new_constraint = false;
bool m_dirty = false;
expr_ref_vector m_input_assertions;
expr_ref_vector m_allterms;
ptr_vector<expr> m_subterms;