mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
relax the literal check in theory_lra
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
762f265616
commit
697fd37d26
2 changed files with 7 additions and 1 deletions
|
@ -1231,6 +1231,10 @@ rational core::val(const factorization& f) const {
|
|||
|
||||
void core::add_empty_lemma() {
|
||||
m_lemma_vec->push_back(lemma());
|
||||
if (lp_settings().stats().m_nla_calls == 5 && m_lemma_vec->size() == 11) {
|
||||
TRACE("nla_solver", tout << "bad lemma\n";);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void core::negate_relation(unsigned j, const rational& a) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue