3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

fix un-intialized variable warnings

This commit is contained in:
Nikolaj Bjorner 2024-09-30 15:08:33 -07:00
parent 2c94a3a1b3
commit 551cc53a2f
8 changed files with 10 additions and 10 deletions

View file

@ -1678,7 +1678,7 @@ bool core::is_nl_var(lpvar j) const {
unsigned core::get_var_weight(lpvar j) const {
unsigned k;
unsigned k = 0;
switch (lra.get_column_type(j)) {
case lp::column_type::fixed: