3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 14:25:46 +00:00

more viable scaffolding

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-06-22 20:55:56 -07:00
parent 8f0c408c0a
commit b9719768a0
2 changed files with 17 additions and 6 deletions

View file

@ -157,7 +157,7 @@ namespace polysat {
#if POLYSAT_LOGGING_ENABLED
void viable::log() {
// only for small problems
for (pvar v = 0; v < std::min(10u, m_viable.size()); ++v)
for (pvar v = 0; v < std::min(10u, m_viable_bdd.size()); ++v)
log(v);
}