3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-07 09:30:54 +00:00

Fix 13 compiler warnings: sign-comparison and unused parameters (#8215)

* Initial plan

* Fix 13 compiler warnings: sign-comparison and unused parameters

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
Copilot 2026-01-16 16:00:42 -08:00 committed by Nikolaj Bjorner
parent ac097f1d74
commit 11970f9203
10 changed files with 13 additions and 13 deletions

View file

@ -2200,7 +2200,7 @@ namespace sat {
backtrack(m_cube_state.m_cube, m_cube_state.m_is_decision);
return l_undef;
}
int prev_nfreevars = m_freevars.size();
int prev_nfreevars = static_cast<int>(m_freevars.size());
double prev_psat = m_config.m_cube_cutoff == adaptive_psat_cutoff ? psat_heur() : dbl_max; // MN. only compute PSAT if enabled
literal lit = choose();
if (inconsistent()) {