3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

add statistics on horner's heuristic

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-08-09 15:10:24 -07:00
parent 22e2ad6824
commit 5435942228
3 changed files with 11 additions and 2 deletions

View file

@ -107,6 +107,9 @@ struct stats {
unsigned m_hnf_cutter_calls;
unsigned m_hnf_cuts;
unsigned m_nla_calls;
unsigned m_horner_calls;
unsigned m_horner_conflicts;
unsigned m_cross_nested_forms;
stats() { reset(); }
void reset() { memset(this, 0, sizeof(*this)); }
};