mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 16:38:45 +00:00
fix lookahead with ba extension
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
81ad69214c
commit
99b232a4c5
5 changed files with 26 additions and 4 deletions
|
@ -988,6 +988,7 @@ namespace sat {
|
|||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
// copy externals:
|
||||
for (unsigned idx = 0; idx < m_s.m_watches.size(); ++idx) {
|
||||
watch_list const& wl = m_s.m_watches[idx];
|
||||
|
@ -997,6 +998,11 @@ namespace sat {
|
|||
}
|
||||
}
|
||||
}
|
||||
#else
|
||||
if (m_s.m_ext) {
|
||||
m_ext = m_s.m_ext->copy(this);
|
||||
}
|
||||
#endif
|
||||
propagate();
|
||||
m_qhead = m_trail.size();
|
||||
TRACE("sat", m_s.display(tout); display(tout););
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue