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:
parent
f2d5d6fecf
commit
f2270d4654
3 changed files with 22 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue