mirror of
https://github.com/Z3Prover/z3
synced 2025-08-20 18:20:22 +00:00
differentiate fixed from offset-eq in statistics
This commit is contained in:
parent
ec1480b12a
commit
a2bac119d3
2 changed files with 8 additions and 2 deletions
|
@ -578,8 +578,12 @@ public:
|
|||
);
|
||||
|
||||
bool added = m_imp.add_eq(je, ke, exp, is_fixed);
|
||||
if (added)
|
||||
lp().stats().m_offset_eqs++;
|
||||
if (added) {
|
||||
if (is_fixed)
|
||||
lp().stats().m_fixed_eqs++;
|
||||
else
|
||||
lp().stats().m_offset_eqs++;
|
||||
}
|
||||
return added;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue