mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
parent
1959b7c48a
commit
f810f25d8d
4 changed files with 10 additions and 11 deletions
|
@ -58,7 +58,7 @@ class quasi_macros_tactic : public tactic {
|
|||
deps.push_back(g->dep(i));
|
||||
}
|
||||
|
||||
while (more) { // CMW: use repeat(...) ?
|
||||
do {
|
||||
if (m().canceled())
|
||||
throw tactic_exception(m().limit().get_cancel_msg());
|
||||
|
||||
|
@ -69,7 +69,8 @@ class quasi_macros_tactic : public tactic {
|
|||
forms.swap(new_forms);
|
||||
proofs.swap(new_proofs);
|
||||
deps.swap(new_deps);
|
||||
}
|
||||
}
|
||||
while (more);
|
||||
|
||||
g->reset();
|
||||
for (unsigned i = 0; i < new_forms.size(); i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue