mirror of
https://github.com/Z3Prover/z3
synced 2025-10-16 04:20:25 +00:00
fix build
This commit is contained in:
parent
1de25ed09c
commit
965bee5801
4 changed files with 4 additions and 4 deletions
|
@ -1785,7 +1785,7 @@ namespace sat {
|
|||
}
|
||||
|
||||
bool solver::should_propagate() const {
|
||||
return !inconsistent() && (m_qhead < m_trail.size() || (m_ext && m_ext->should_propagate()));
|
||||
return !inconsistent() && (m_qhead < m_trail.size() || (m_ext && m_ext->can_propagate()));
|
||||
}
|
||||
|
||||
lbool solver::final_check() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue