3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-05 09:37:44 +00:00

a few more spacer related warning messages

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-07-31 21:56:13 -07:00
parent 9a78bec8a8
commit b12882d94a
7 changed files with 44 additions and 54 deletions

View file

@ -335,8 +335,8 @@ bool naive_convex_closure::compute_closure(anti_unifier& au, ast_manager& m,
// for each substitution entry
bool is_first_key = true;
unsigned lower_bound;
unsigned upper_bound;
unsigned lower_bound = 0;
unsigned upper_bound = 0;
for (const auto& pair : au.get_substitution(0)) {
// construct vector
expr* key = &pair.get_key();
@ -355,8 +355,8 @@ bool naive_convex_closure::compute_closure(anti_unifier& au, ast_manager& m,
}
// check whether vector represents interval
unsigned current_lower_bound;
unsigned current_upper_bound;
unsigned current_lower_bound = 0;
unsigned current_upper_bound = 0;
// if vector represents interval
if (get_range(entries, current_lower_bound, current_upper_bound)) {