3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-07 11:41:22 +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

@ -48,6 +48,8 @@ namespace smt {
st.update("arith pseudo nonlinear", m_stats.m_nl_linear);
st.update("arith nonlinear bounds", m_stats.m_nl_bounds);
st.update("arith nonlinear horner", m_stats.m_nl_cross_nested);
st.update("arith tableau max rows", m_stats.m_tableau_max_rows);
st.update("arith tableau max columns", m_stats.m_tableau_max_columns);
m_arith_eq_adapter.collect_statistics(st);
}