mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
update stats in check_pdd_eq()
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
407c8a60db
commit
9ae9877353
3 changed files with 3 additions and 0 deletions
|
@ -799,6 +799,7 @@ namespace dd {
|
|||
st.update("superposed", m_stats.m_superposed);
|
||||
st.update("degree", m_stats.m_max_expr_degree);
|
||||
st.update("size", m_stats.m_max_expr_size);
|
||||
st.update("conflicts", m_stats.m_conflicts);
|
||||
}
|
||||
|
||||
std::ostream& grobner::display(std::ostream & out, const equation & eq) const {
|
||||
|
|
|
@ -37,6 +37,7 @@ public:
|
|||
unsigned m_max_expr_degree;
|
||||
unsigned m_superposed;
|
||||
unsigned m_compute_steps;
|
||||
unsigned m_conflicts;
|
||||
void reset() { memset(this, 0, sizeof(*this)); }
|
||||
stats() { reset(); }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue