-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
Use Z3 in parallel mode #2315
Comments
Hi Rano, thanks for bringing this up! Do you have any evidence that we could benefit from parallel Z3 solving? Last time I checked, Z3's parallel support was limited to a few theories (bitvectors, iirc). |
My SMT knowledge is very rusty 😅 I do not know the details of z3 parallel support. Not sure I can come up with an example in TLA+ that gets transformed into the supported theories. If you think Apalache doesn't use these theories, you can put this feature request in the backlog. |
This should be possible now with #2990. Actually, I only manage to activate |
Is your feature request related to a problem? Please describe
It would be nice to expose some z3 configuration at Apalache CLI.
For one, I want to run z3 in parallel mode. This can be done via setting
parallel.enable
totrue
.Describe the solution you'd like
This can be exposed via
--tuning-options
.Eg.
apalache-mc simulate --tuning-options=search.solver.z3.parallel.enable=true ...
Describe the impact on your work
Faster z3 search on multi-core machines.
The text was updated successfully, but these errors were encountered: