Reputation: 13
I am working on visualize a prototype of microsoft z3. I wonder if it is possible to estimate the running time of z3 or the algorithm? Even it would be great if I could get a worst case running time.
Also, in z3, is there any method to get the running time of each checking process by theory solver?
Thanks for answer.
Upvotes: 0
Views: 256
Reputation: 1832
It's not possible in general. SAT is an NP-complete problem, and SMT is at least as hard as SAT.
Upvotes: 1