3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-14 11:40:19 +00:00

instrument the tableau

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-03-25 12:11:07 -07:00
parent 09467ba677
commit 96cc58f67c
4 changed files with 7 additions and 1 deletions

View file

@ -49,6 +49,7 @@ namespace smt {
unsigned m_gb_simplify, m_gb_superpose, m_gb_compute_basis, m_gb_num_processed;
unsigned m_nl_branching, m_nl_linear, m_nl_bounds, m_nl_cross_nested;
unsigned m_branch_infeasible_int, m_branch_infeasible_var;
unsigned m_tableau_max_rows, m_tableau_max_columns;
void reset() { memset(this, 0, sizeof(theory_arith_stats)); }
theory_arith_stats() { reset(); }