mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fix issue 153: assert rem/mod axiom no matter what is status of second argument
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
882dbfc706
commit
f4d256ef30
2
README
2
README
|
@ -41,3 +41,5 @@ Remark: clang does not support OpenMP yet.
|
||||||
cd build
|
cd build
|
||||||
make
|
make
|
||||||
|
|
||||||
|
|
||||||
|
To clean Z3 you can delete the build directory and run the mk_make.py script again.
|
|
@ -3321,14 +3321,14 @@ namespace smt {
|
||||||
CASSERT("dyn_ack", check_clauses(m_lemmas) && check_clauses(m_aux_clauses));
|
CASSERT("dyn_ack", check_clauses(m_lemmas) && check_clauses(m_aux_clauses));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (resource_limits_exceeded()) {
|
if (resource_limits_exceeded() && !inconsistent()) {
|
||||||
SASSERT(!inconsistent());
|
|
||||||
return l_undef;
|
return l_undef;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_base_lvl == m_scope_lvl && m_fparams.m_simplify_clauses)
|
if (m_base_lvl == m_scope_lvl && m_fparams.m_simplify_clauses)
|
||||||
simplify_clauses();
|
simplify_clauses();
|
||||||
|
|
||||||
|
|
||||||
if (!decide()) {
|
if (!decide()) {
|
||||||
final_check_status fcs = final_check();
|
final_check_status fcs = final_check();
|
||||||
TRACE("final_check_result", tout << "fcs: " << fcs << " last_search_failure: " << m_last_search_failure << "\n";);
|
TRACE("final_check_result", tout << "fcs: " << fcs << " last_search_failure: " << m_last_search_failure << "\n";);
|
||||||
|
@ -3342,8 +3342,7 @@ namespace smt {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (resource_limits_exceeded()) {
|
if (resource_limits_exceeded() && !inconsistent()) {
|
||||||
SASSERT(!inconsistent());
|
|
||||||
return l_undef;
|
return l_undef;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -336,8 +336,9 @@ namespace smt {
|
||||||
theory_var theory_arith<Ext>::internalize_rem(app * n) {
|
theory_var theory_arith<Ext>::internalize_rem(app * n) {
|
||||||
theory_var s = mk_binary_op(n);
|
theory_var s = mk_binary_op(n);
|
||||||
context & ctx = get_context();
|
context & ctx = get_context();
|
||||||
if (!ctx.relevancy())
|
if (!ctx.relevancy()) {
|
||||||
mk_rem_axiom(n->get_arg(0), n->get_arg(1));
|
mk_rem_axiom(n->get_arg(0), n->get_arg(1));
|
||||||
|
}
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -456,7 +457,6 @@ namespace smt {
|
||||||
|
|
||||||
template<typename Ext>
|
template<typename Ext>
|
||||||
void theory_arith<Ext>::mk_rem_axiom(expr * dividend, expr * divisor) {
|
void theory_arith<Ext>::mk_rem_axiom(expr * dividend, expr * divisor) {
|
||||||
if (!m_util.is_zero(divisor)) {
|
|
||||||
// if divisor is zero, then rem is an uninterpreted function.
|
// if divisor is zero, then rem is an uninterpreted function.
|
||||||
ast_manager & m = get_manager();
|
ast_manager & m = get_manager();
|
||||||
expr * zero = m_util.mk_numeral(rational(0), true);
|
expr * zero = m_util.mk_numeral(rational(0), true);
|
||||||
|
@ -472,7 +472,6 @@ namespace smt {
|
||||||
// !n < 0 || rem(a,n) = -mod(a, n)
|
// !n < 0 || rem(a,n) = -mod(a, n)
|
||||||
mk_axiom(dltz, eq2);
|
mk_axiom(dltz, eq2);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// create the term: s := to_real(to_int(x)) - x
|
// create the term: s := to_real(to_int(x)) - x
|
||||||
|
|
Loading…
Reference in a new issue