3
0
Fork 0
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:
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

@ -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);
}
}