I am running Z3 on UFBV queries. Currently the query contains 2 calls check-sat.
If put push 1 just after check-sat Z3 solves the query in 30sec. If don't put any push 1 at all - Z3 solves it in 200sec.
Interesting. Any specific reasons or just a coincidence?
| ||||
|
feedback
|
|
Z3 3.x has a "strategy specification language" based on tactics and tacticals. I'm not "advertising" that yet because it is working in progress.
The basic idea is described in this slide deck.
We have a different built-in strategy for each logic. The strategies usually do not support incremental solving, because they may apply transformations that use a "closed-world" assumption. Example, we have transformations that map 0-1 linear integer arithmetic into SAT. Whenever Z3 detects that the user "wants" incremental solving (e.g., multiple BTW, if you have two consecutive Now, suppose your query is of the form: | |||||||||
feedback
|