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:
parent
714c71ab88
commit
54ed6d4413
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue