3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-02 18:08:57 +00:00

Output both Nielsen graph size and conflict size

This commit is contained in:
CEisenhofer 2026-04-01 10:23:55 +02:00
parent 5d95f44a03
commit 60913f0068

View file

@ -718,6 +718,11 @@ namespace smt {
}
std::cout << std::endl;
#endif
#endif
#ifdef Z3DEBUG
std::cout << "Conflict with " << lits.size() << " literals and " << eqs.size() << " equalities" << std::endl;
std::cout << "The root node contained " << m_nielsen.root()->str_mems().size() << " memberships and " << m_nielsen.root()->str_eqs().size() << " equalities" << std::endl;
#endif
}