3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Don't cut off output arbitrarily

This commit is contained in:
Jakob Rath 2022-10-07 17:49:03 +02:00
parent 714c71ab88
commit 54ed6d4413

View file

@ -731,7 +731,7 @@ namespace polysat {
}
void viable::log() {
for (pvar v = 0; v < std::min(10u, m_units.size()); ++v)
for (pvar v = 0; v < m_units.size(); ++v)
log(v);
}