mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
add some nla statistics generate not more than one pl lemma an a rm monomial
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
4ba3ccfc99
commit
a323eaf1c8
2 changed files with 8 additions and 2 deletions
|
@ -116,6 +116,8 @@ struct stats {
|
|||
unsigned m_bound_propagations2;
|
||||
unsigned m_assert_diseq;
|
||||
unsigned m_gomory_cuts;
|
||||
unsigned m_nla_explanations;
|
||||
unsigned m_nla_lemmas;
|
||||
stats() { reset(); }
|
||||
void reset() {
|
||||
memset(this, 0, sizeof(*this));
|
||||
|
@ -2146,9 +2148,11 @@ public:
|
|||
lbool check_aftermath_nla(lbool r, const vector<nla::lemma>& lv) {
|
||||
switch (r) {
|
||||
case l_false: {
|
||||
m_stats.m_nla_lemmas += lv.size();
|
||||
for(const nla::lemma & l : lv) {
|
||||
m_lemma = l; //todo avoit the copy
|
||||
m_lemma = l; //todo avoid the copy
|
||||
m_explanation = l.expl();
|
||||
m_stats.m_nla_explanations += l.expl().size();
|
||||
false_case_of_check_nla();
|
||||
}
|
||||
break;
|
||||
|
@ -3761,7 +3765,8 @@ public:
|
|||
st.update("arith-patches", lp().settings().st().m_patches);
|
||||
st.update("arith-patches-success", lp().settings().st().m_patches_success);
|
||||
st.update("arith-hnf-calls", lp().settings().st().m_hnf_cutter_calls);
|
||||
st.update("arith-hnf-cuts", lp().settings().st().m_hnf_cuts);
|
||||
st.update("nla-explanations", m_stats.m_nla_explanations);
|
||||
st.update("nla-lemmas", m_stats.m_nla_lemmas);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -1698,6 +1698,7 @@ struct solver::imp {
|
|||
for (factor f : factorization) {
|
||||
if (abs(vvr(f)) > rmv) {
|
||||
generate_pl(rm, factorization, factor_index);
|
||||
return;
|
||||
}
|
||||
factor_index++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue