mirror of
https://github.com/Z3Prover/z3
synced 2025-08-18 09:12:16 +00:00
some more copilot aided updated
This commit is contained in:
parent
2ecf6dc53c
commit
03f18c148e
5 changed files with 39 additions and 52 deletions
|
@ -41,8 +41,8 @@ struct is_unbounded_proc {
|
|||
bool is_unbounded(goal const & g) {
|
||||
ast_manager & m = g.m();
|
||||
bound_manager bm(m);
|
||||
for (unsigned i = 0; i < g.size(); ++i)
|
||||
bm(g.form(i), g.dep(i), g.pr(i));
|
||||
for (auto [f, d, p] : g)
|
||||
bm(f, d, p);
|
||||
is_unbounded_proc proc(bm);
|
||||
return test(g, proc);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue