Replies: 1 comment 1 reply
-
There isn't much in support of xor constraints (also not for bit-vectors). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am solving a complex SAT problem (NOT Optimize) using z3 and want to leverage multiple cores to speed up the solving process. The way I do this is to add this line of code set_param("parallel.enable", True) to enable parallelism. However, it seems that this does not provide any help. I want to ask whether this way to call the parallel mode is correct or not. Do you have any other suggestions for me to leverage multiple cores to speed this up?
As a motivating example, it takes me around 1.5 mins to get the output result for the following program (parallel.py) by running the command (time python3 parallel.py) using one core. People might need to install the z3 package in python through pip before running it.
Thanks a lot for any feedback in advance.
Beta Was this translation helpful? Give feedback.
All reactions