[Question]: How can I get used lemmas about formula after solving? #7492
Unanswered
hagozaebii
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
When using the -st option in Z3, the statistics provided are relatively high-level and lack detailed information about the solving process. For example, while Z3 reports stats like memory usage, number of propagations, and conflicts like:
However, I want to know lemmas used during solving and rewrite rules or transformations applied to the formula.
For example, cvc5 provides very granular statistics with the --stats-internal option, such as the number of terms processed, the individual rewrite steps applied, and even specific inference types and their counts (e.g., ARITH_CONF_EQ, ARITH_SPLIT_DEQ) like:
Is there any way to extract similarly detailed statistics from Z3?
Thank you for your help!
Beta Was this translation helpful? Give feedback.
All reactions