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

add ad-hoc any-of for cross compatibility and simplifying interface

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-11-04 12:49:55 -07:00
parent 49d1490454
commit 7bb962d934

View file

@ -68,7 +68,7 @@ class model_reconstruction_trail {
}
bool intersects(ast_mark const& free_vars, vector<dependent_expr> const& added) {
return std::any_of(added.begin(), added.end(), [&](dependent_expr const& d) { return intersects(free_vars, d); });
return any_of(added, [&](dependent_expr const& d) { return intersects(free_vars, d); });
}
public: