3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-24 13:28:36 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-08-20 08:02:31 -07:00
parent d15c0e396e
commit 5d08ebdffd
5 changed files with 10 additions and 7 deletions

View file

@ -1544,6 +1544,7 @@ lbool core::check() {
scoped_limits sl(m_reslim);
sl.push_child(&m_nra_lim);
ret = m_nra.check_assignment();
IF_VERBOSE(1, verbose_stream() << "nra check_assignment returned " << ret << "\n";);
}
if (no_effect()) {

View file

@ -358,6 +358,8 @@ struct solver::imp {
default:
UNREACHABLE();
}
IF_VERBOSE(1, verbose_stream() << "linear lemma: " << lemma << "\n");
}
m_nla_core.set_use_nra_model(true);
break;