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:
parent
e05a3eaf5d
commit
210b8d2b31
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue