mirror of
https://github.com/Z3Prover/z3
synced 2025-08-19 09:40:20 +00:00
local changes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
82922d92f7
commit
ced2029ae9
12 changed files with 69 additions and 64 deletions
|
@ -1060,10 +1060,12 @@ namespace sat {
|
|||
it.next();
|
||||
}
|
||||
|
||||
ext_constraint_list const& ext_list = s.m_ext_use_list.get(~l);
|
||||
for (ext_constraint_idx idx : ext_list) {
|
||||
if (!s.s.m_ext->is_blocked(l, idx)) {
|
||||
return false;
|
||||
if (s.s.m_ext) {
|
||||
ext_constraint_list const& ext_list = s.m_ext_use_list.get(~l);
|
||||
for (ext_constraint_idx idx : ext_list) {
|
||||
if (!s.s.m_ext->is_blocked(l, idx)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue