mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
140926e7c0
commit
f29b455611
7 changed files with 74 additions and 41 deletions
|
@ -1861,13 +1861,15 @@ namespace smt {
|
|||
break;
|
||||
}
|
||||
}
|
||||
if (m_lit_occs[l.index()] == 0) {
|
||||
is_pos = false;
|
||||
break;
|
||||
}
|
||||
if (m_lit_occs[(~l).index()] == 0) {
|
||||
is_pos = true;
|
||||
break;
|
||||
if (track_occs()) {
|
||||
if (m_lit_occs[l.index()] == 0) {
|
||||
is_pos = false;
|
||||
break;
|
||||
}
|
||||
if (m_lit_occs[(~l).index()] == 0) {
|
||||
is_pos = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
is_pos = m_phase_default;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue