Skip to content

Commit 7f5427b

Browse files
disable assertion that checks nl lemmas if using nra core
1 parent 2fc3b07 commit 7f5427b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/math/lp/nla_core.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ new_lemma::new_lemma(core& c, char const* name):name(name), c(c) {
10471047
new_lemma& new_lemma::operator|=(ineq const& ineq) {
10481048
if (!c.explain_ineq(*this, ineq.term(), ineq.cmp(), ineq.rs())) {
10491049
CTRACE(nla_solver, c.ineq_holds(ineq), c.print_ineq(ineq, tout) << "\n";);
1050-
SASSERT(!c.ineq_holds(ineq));
1050+
SASSERT(c.m_use_nra_model || !c.ineq_holds(ineq));
10511051
current().push_back(ineq);
10521052
}
10531053
return *this;

0 commit comments

Comments
 (0)