3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

fix warnings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-23 12:14:34 -06:00
parent 6321dabe93
commit 794aafa6f8
4 changed files with 4 additions and 4 deletions

View file

@ -426,7 +426,7 @@ namespace sat {
// Assign higher cutset budgets to equality candidates that come from simulation
// touch them to trigger recomputation of cutsets.
u64_map<literal> val2lit;
unsigned i = 0, j = 0, num_eqs = 0;
unsigned i = 0, num_eqs = 0;
for (cut_val val : var2val) {
if (!s.was_eliminated(i) && s.value(i) == l_undef) {
literal u(i, false), v;