mirror of
https://github.com/Z3Prover/z3
synced 2025-06-25 15:23:41 +00:00
updates
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8744c62fca
commit
60bb02b709
11 changed files with 120 additions and 35 deletions
|
@ -491,7 +491,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
bool tracking_assumptions() const {
|
||||
return m_search_lvl > m_base_lvl;
|
||||
return !m_assumptions.empty() && m_search_lvl > m_base_lvl;
|
||||
}
|
||||
|
||||
expr * bool_var2expr(bool_var v) const {
|
||||
|
@ -1011,6 +1011,7 @@ namespace smt {
|
|||
|
||||
void push_eq(enode * lhs, enode * rhs, eq_justification const & js) {
|
||||
SASSERT(lhs != rhs);
|
||||
SASSERT(lhs->get_root() != rhs->get_root());
|
||||
m_eq_propagation_queue.push_back(new_eq(lhs, rhs, js));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue