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

use iterator shortcut

This commit is contained in:
Nikolaj Bjorner 2023-11-18 09:52:58 -08:00
parent a9f9d3ddf4
commit 1710fe4927

View file

@ -1672,12 +1672,7 @@ namespace smt {
}
bool context::can_theories_propagate() const {
for (theory* t : m_theory_set) {
if (t->can_propagate()) {
return true;
}
}
return false;
return any_of(m_theory_set, [&](theory* t) { return t->can_propagate(); });
}
bool context::can_propagate() const {