mirror of
https://github.com/Z3Prover/z3
synced 2026-02-13 20:33:02 +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:
parent
9666915dca
commit
36323f723b
10 changed files with 13 additions and 13 deletions
|
|
@ -1972,7 +1972,7 @@ namespace sls {
|
|||
return 0.0000001;
|
||||
else if (result == 0)
|
||||
return 0.000002;
|
||||
for (int i = m_prob_break.size(); i <= breaks; ++i)
|
||||
for (int i = static_cast<int>(m_prob_break.size()); i <= breaks; ++i)
|
||||
m_prob_break.push_back(std::pow(m_config.cb, -i));
|
||||
return m_prob_break[breaks];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue