mirror of
https://github.com/Z3Prover/z3
synced 2026-02-15 13:21:50 +00:00
Adopt C++17 structured bindings for map/pair iteration (#8159)
* Initial plan * Adopt structured bindings for map iteration Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Fix DEBUG_CODE macro issue with structured bindings 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
9a80bd2016
commit
31122b0c10
10 changed files with 20 additions and 23 deletions
|
|
@ -1766,10 +1766,10 @@ namespace sat {
|
|||
m_elim_todo.reset();
|
||||
std::stable_sort(tmp.begin(), tmp.end(), bool_var_and_cost_lt());
|
||||
TRACE(sat_simplifier,
|
||||
for (auto& p : tmp) tout << "(" << p.first << ", " << p.second << ") ";
|
||||
for (auto& [v, c] : tmp) tout << "(" << v << ", " << c << ") ";
|
||||
tout << "\n";);
|
||||
for (auto& p : tmp)
|
||||
r.push_back(p.first);
|
||||
for (auto& [v, c] : tmp)
|
||||
r.push_back(v);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue