mirror of
https://github.com/Z3Prover/z3
synced 2026-06-28 03:18:49 +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
|
|
@ -523,7 +523,8 @@ public:
|
|||
for (sat::bool_var v : candidates) {
|
||||
expr* e = bool_var2expr(v);
|
||||
if (e) {
|
||||
fmls.push_back(e);
|
||||
if (fmls.size() < backtrack_level)
|
||||
fmls.push_back(e);
|
||||
vs.push_back(e);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue