mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
deal with compiler warnings, from MacOS CI build
This commit is contained in:
parent
7eceeff349
commit
f29a596070
13 changed files with 19 additions and 25 deletions
|
@ -223,9 +223,6 @@ namespace array {
|
|||
args1.push_back(k);
|
||||
args2.push_back(k);
|
||||
}
|
||||
std::cout << "e1: " << mk_pp(e1, m) << "\n";
|
||||
std::cout << "e2: " << mk_pp(e2, m) << "\n";
|
||||
std::cout << "funcs: " << funcs << "\n";
|
||||
expr_ref sel1(a.mk_select(args1), m);
|
||||
expr_ref sel2(a.mk_select(args2), m);
|
||||
literal lit1 = eq_internalize(e1, e2);
|
||||
|
|
|
@ -419,7 +419,7 @@ namespace bv {
|
|||
if (p.m_atom) {
|
||||
for (auto vp : *p.m_atom)
|
||||
propagate_bits(vp);
|
||||
for (auto const& eq : p.m_atom->eqs())
|
||||
for (eq_occurs const& eq : p.m_atom->eqs())
|
||||
propagate_eq_occurs(eq);
|
||||
}
|
||||
else
|
||||
|
@ -691,7 +691,7 @@ namespace bv {
|
|||
result->m_bool_var2atom.setx(i, new_a, nullptr);
|
||||
for (auto vp : *a)
|
||||
new_a->m_occs = new (result->get_region()) var_pos_occ(vp.first, vp.second, new_a->m_occs);
|
||||
for (auto const& occ : a->eqs()) {
|
||||
for (eq_occurs const& occ : a->eqs()) {
|
||||
expr* e = occ.m_node->get_expr();
|
||||
expr_ref e2(tr(e), tr.to());
|
||||
euf::enode* n = ctx.get_enode(e2);
|
||||
|
|
|
@ -245,7 +245,6 @@ namespace dt {
|
|||
unsigned non_rec_idx = dt.get_constructor_idx(non_rec_c);
|
||||
var_data* d = m_var_data[v];
|
||||
enode* recognizer = d->m_recognizers.get(non_rec_idx, nullptr);
|
||||
func_decl* r = nullptr;
|
||||
SASSERT(!d->m_constructor);
|
||||
SASSERT(!recognizer || ctx.value(recognizer) == l_false || !is_final);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue