3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-22 05:36:41 +00:00

small bugfix in searchtree?

This commit is contained in:
Ilana Shapiro 2025-11-16 14:30:50 -08:00
parent e05a3eaf5d
commit 210b8d2b31

View file

@ -211,7 +211,7 @@ namespace search_tree {
if (lit != lit_l && !res.contains(lit)) if (lit != lit_l && !res.contains(lit))
res.push_back(lit); res.push_back(lit);
for (auto const &lit : core_r) for (auto const &lit : core_r)
if (lit != lit_l && !res.contains(lit)) if (lit != lit_r && !res.contains(lit))
res.push_back(lit); res.push_back(lit);
return res; return res;
} }