mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into fpa-api
This commit is contained in:
commit
88aa349eb7
2 changed files with 3 additions and 1 deletions
|
@ -3117,7 +3117,7 @@ done:
|
||||||
}
|
}
|
||||||
|
|
||||||
if(node->Annotation.IsEmpty() || eq(node->Annotation.Formula,prev_annot) || (repeated_case_count > 0 && !axioms_added) || (repeated_case_count >= 10)){
|
if(node->Annotation.IsEmpty() || eq(node->Annotation.Formula,prev_annot) || (repeated_case_count > 0 && !axioms_added) || (repeated_case_count >= 10)){
|
||||||
looks_bad:
|
//looks_bad:
|
||||||
if(!axioms_added){
|
if(!axioms_added){
|
||||||
// add the axioms in the off chance they are useful
|
// add the axioms in the off chance they are useful
|
||||||
const std::vector<expr> &theory = ls->get_axioms();
|
const std::vector<expr> &theory = ls->get_axioms();
|
||||||
|
|
|
@ -295,6 +295,8 @@ interval & interval::operator*=(interval const & other) {
|
||||||
}
|
}
|
||||||
if (other.is_zero()) {
|
if (other.is_zero()) {
|
||||||
*this = other;
|
*this = other;
|
||||||
|
m_lower_dep = m_manager.mk_join(m_lower_dep, m_upper_dep);
|
||||||
|
m_upper_dep = m_lower_dep;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue