Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

z3 process kept alive for longer than necessary #520

Open
keyboardDrummer opened this issue Jan 8, 2025 · 0 comments
Open

z3 process kept alive for longer than necessary #520

keyboardDrummer opened this issue Jan 8, 2025 · 0 comments
Labels
enhancement New feature or request performance

Comments

@keyboardDrummer
Copy link
Member

Verify Foo in the following program:

method Foo() {
  assert Ack(4, 3) == 1;
}

function Ack(m: nat, n: nat): nat
{
  if m == 0 then
    n + 1
  else if n == 0 then
    Ack(m - 1, 1)
  else
    Ack(m - 1, Ack(m, n - 1))
}

After verification times out, there is still a z3 process running, until you make an edit to the program. It would be better if the z3 process was terminated immediately after verification finished.

@keyboardDrummer keyboardDrummer added enhancement New feature or request performance labels Jan 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request performance
Projects
None yet
Development

No branches or pull requests

1 participant