3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 11:37:54 +00:00

cutset updates

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-09 21:37:25 -08:00
parent e4cc9e8404
commit 607a1b3f99
6 changed files with 208 additions and 119 deletions

View file

@ -26,7 +26,8 @@ namespace sat {
class aig_simplifier {
public:
struct stats {
unsigned m_num_eqs, m_num_cuts, m_num_xors, m_num_ands, m_num_ites;
unsigned m_num_eqs, m_num_units, m_num_cuts, m_num_xors, m_num_ands, m_num_ites;
unsigned m_num_calls;
stats() { reset(); }
void reset() { memset(this, 0, sizeof(*this)); }
};