mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
neatify statistics
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f238460597
commit
65bd427e46
|
@ -510,8 +510,8 @@ namespace sat {
|
|||
}
|
||||
|
||||
void asymm_branch::collect_statistics(statistics & st) const {
|
||||
st.update("elim literals", m_elim_literals);
|
||||
st.update("tr", m_tr);
|
||||
st.update("sat elim literals", m_elim_literals);
|
||||
st.update("sat tr", m_tr);
|
||||
}
|
||||
|
||||
void asymm_branch::reset_statistics() {
|
||||
|
|
|
@ -213,8 +213,8 @@ namespace sat {
|
|||
}
|
||||
|
||||
void cleaner::collect_statistics(statistics & st) const {
|
||||
st.update("elim clauses", m_elim_clauses);
|
||||
st.update("elim literals", m_elim_literals);
|
||||
st.update("sat elim clauses", m_elim_clauses);
|
||||
st.update("sat elim literals", m_elim_literals);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
@ -267,7 +267,7 @@ namespace sat {
|
|||
}
|
||||
|
||||
void probing::collect_statistics(statistics & st) const {
|
||||
st.update("probing assigned", m_num_assigned);
|
||||
st.update("sat probing assigned", m_num_assigned);
|
||||
}
|
||||
|
||||
void probing::reset_statistics() {
|
||||
|
|
|
@ -251,8 +251,8 @@ namespace sat {
|
|||
}
|
||||
|
||||
void scc::collect_statistics(statistics & st) const {
|
||||
st.update("elim bool vars scc", m_num_elim);
|
||||
st.update("elim binary", m_num_elim_bin);
|
||||
st.update("sat scc elim vars", m_num_elim);
|
||||
st.update("sat scc elim binary", m_num_elim_bin);
|
||||
}
|
||||
|
||||
void scc::reset_statistics() {
|
||||
|
|
|
@ -2155,15 +2155,15 @@ namespace sat {
|
|||
}
|
||||
|
||||
void simplifier::collect_statistics(statistics & st) const {
|
||||
st.update("subsumed", m_num_subsumed);
|
||||
st.update("subsumption resolution", m_num_sub_res);
|
||||
st.update("elim literals", m_num_elim_lits);
|
||||
st.update("bce", m_num_bce);
|
||||
st.update("cce", m_num_cce);
|
||||
st.update("acce", m_num_acce);
|
||||
st.update("abce", m_num_abce);
|
||||
st.update("bca", m_num_bca);
|
||||
st.update("ate", m_num_ate);
|
||||
st.update("sat subsumed", m_num_subsumed);
|
||||
st.update("sat subs resolution", m_num_sub_res);
|
||||
st.update("sat elim literals", m_num_elim_lits);
|
||||
st.update("sat bce", m_num_bce);
|
||||
st.update("sat cce", m_num_cce);
|
||||
st.update("sat acce", m_num_acce);
|
||||
st.update("sat abce", m_num_abce);
|
||||
st.update("sat bca", m_num_bca);
|
||||
st.update("sat ate", m_num_ate);
|
||||
}
|
||||
|
||||
void simplifier::reset_statistics() {
|
||||
|
|
Loading…
Reference in a new issue