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

update unit_lim to the correct value (#7423)

Co-authored-by: stormckey <chenhaogao123@gmail.com>
This commit is contained in:
stormckey 2024-10-17 01:23:13 +08:00 committed by GitHub
parent 3896e18227
commit 8ff4036f68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -134,7 +134,7 @@ namespace smt {
dst = tr(unit_trail.get(j));
pctx.assert_expr(dst);
}
unit_lim[i] = sz;
unit_lim[i] = pctx.assigned_literals().size();
}
IF_VERBOSE(1, verbose_stream() << "(smt.thread :units " << sz << ")\n");
};