mirror of
https://github.com/Z3Prover/z3
synced 2025-06-29 01:18:45 +00:00
Fix some warnings about unused stuff. (#6290)
This commit is contained in:
parent
d5d77dfe64
commit
706f7fbdc7
3 changed files with 3 additions and 3 deletions
|
@ -328,7 +328,6 @@ namespace smt {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
context & ctx = get_context();
|
context & ctx = get_context();
|
||||||
region & r = ctx.get_region();
|
|
||||||
enode * _x = get_enode(x);
|
enode * _x = get_enode(x);
|
||||||
enode * _y = get_enode(y);
|
enode * _y = get_enode(y);
|
||||||
eq_vector const& eqs = antecedents.eqs();
|
eq_vector const& eqs = antecedents.eqs();
|
||||||
|
|
|
@ -591,7 +591,6 @@ namespace smt {
|
||||||
get_antecedents(target, source, antecedents);
|
get_antecedents(target, source, antecedents);
|
||||||
if (l != null_literal)
|
if (l != null_literal)
|
||||||
antecedents.push_back(l);
|
antecedents.push_back(l);
|
||||||
region & r = ctx.get_region();
|
|
||||||
ctx.set_conflict(ctx.mk_justification(theory_conflict_justification(get_id(), ctx, antecedents.size(), antecedents.data())));
|
ctx.set_conflict(ctx.mk_justification(theory_conflict_justification(get_id(), ctx, antecedents.size(), antecedents.data())));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -112,6 +112,7 @@ public:
|
||||||
unsigned bv_sz;
|
unsigned bv_sz;
|
||||||
expr * f, * lhs, * rhs;
|
expr * f, * lhs, * rhs;
|
||||||
|
|
||||||
|
#if 0
|
||||||
auto match_bitmask = [&](expr* lhs, expr* rhs) {
|
auto match_bitmask = [&](expr* lhs, expr* rhs) {
|
||||||
unsigned lo, hi;
|
unsigned lo, hi;
|
||||||
expr* arg;
|
expr* arg;
|
||||||
|
@ -131,6 +132,7 @@ public:
|
||||||
update_unsigned_upper(to_app(arg), val);
|
update_unsigned_upper(to_app(arg), val);
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
for (unsigned i = 0; i < sz; i++) {
|
for (unsigned i = 0; i < sz; i++) {
|
||||||
bool negated = false;
|
bool negated = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue