3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

fix some build warnings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-09-24 11:15:47 +01:00
parent afaa48d72a
commit a831fe9609

View file

@ -223,7 +223,7 @@ void lemma_global_generalizer::subsumer::setup_cvx_closure(
cc.reset(n_vars);
unsigned bv_width;
unsigned bv_width = 0;
if (contains_bv(m, lc.get_lemmas()[0].get_sub(), bv_width)) {
cc.set_bv(bv_width);
}
@ -232,7 +232,7 @@ void lemma_global_generalizer::subsumer::setup_cvx_closure(
cc.set_col_var(j, mk_rat_mul(m_col_lcm.get(j), m_col_names.get(j)));
vector<rational> row;
unsigned i;
unsigned i = 0;
for (const auto &lemma : lemmas) {
row.reset();
row.reserve(n_vars);