3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-23 00:50:29 +00:00

make sure split atoms are not already used on the path

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-06-13 17:01:09 -07:00
parent f2d5d6fecf
commit f2270d4654
3 changed files with 22 additions and 5 deletions

View file

@ -477,7 +477,8 @@ namespace {
expr_ref_vector lits(m);
for (auto const &c : candidates) {
vars.push_back(c.e);
lits.push_back(c.e);
if (lits.size() < cutoff)
lits.push_back(c.e);
}
return lits;