mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Don't simplify bounds when normalizing a lemma
This commit is contained in:
parent
f7512d6d5c
commit
e8e27f0daf
|
@ -538,7 +538,8 @@ void lemma::mk_expr_core() {
|
|||
SASSERT(!m_cube.empty());
|
||||
m_body = ::mk_and(m_cube);
|
||||
// normalize works better with a cube
|
||||
normalize(m_body, m_body);
|
||||
normalize(m_body, m_body, false /* no simplify bounds */, false /* term_graph */);
|
||||
|
||||
m_body = ::push_not(m_body);
|
||||
|
||||
if (!m_zks.empty() && has_zk_const(m_body)) {
|
||||
|
|
Loading…
Reference in a new issue