3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-20 07:24:40 +00:00

throttle lemmas in nla_solver untested

This commit is contained in:
Lev Nachmanson 2025-06-25 17:27:53 -07:00 committed by Lev Nachmanson
parent 46319156b8
commit 5caa7f1a29
9 changed files with 156 additions and 105 deletions

View file

@ -107,9 +107,9 @@ namespace nla {
void solver::check_bounded_divisions() {
m_core->check_bounded_divisions();
}
//return only the non-empty lemmas
solver::non_empty_lemmas_range solver::lemmas() const {
return non_empty_lemmas_range(m_core->lemmas());
const vector<lemma>& solver::lemmas() const {
return m_core->lemmas();
}
vector<nla::ineq> const& solver::literals() const {