mirror of
https://github.com/Z3Prover/z3
synced 2026-07-05 06:46:11 +00:00
restore invalid atom case: Path atoms now get rejected in the retry loop and removed from the candidate pool, same as global backbone/negation rejections.
This commit is contained in:
parent
868b5eeaa7
commit
c798213d87
1 changed files with 8 additions and 1 deletions
|
|
@ -1117,6 +1117,13 @@ class parallel_solver {
|
||||||
continue;
|
continue;
|
||||||
if (m.is_true(lit) || m.is_false(lit))
|
if (m.is_true(lit) || m.is_false(lit))
|
||||||
continue;
|
continue;
|
||||||
|
if (b.path_contains_atom(m_l2g, lease, lit)) {
|
||||||
|
expr* atom = lit;
|
||||||
|
m.is_not(lit, atom);
|
||||||
|
rejected_atoms.insert(atom);
|
||||||
|
rejected = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (m_config.m_global_backbones && b.is_global_backbone_or_negation(m_l2g, lit)) {
|
if (m_config.m_global_backbones && b.is_global_backbone_or_negation(m_l2g, lit)) {
|
||||||
expr* atom = lit;
|
expr* atom = lit;
|
||||||
m.is_not(lit, atom);
|
m.is_not(lit, atom);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue