From 6a4062809d9f9ab180dc7b6a0c63111f9cf83f32 Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Fri, 15 May 2020 10:35:42 -0700 Subject: [PATCH] Nra add term (#4331) * n Signed-off-by: Lev Nachmanson * do not create assumptions Signed-off-by: Lev Nachmanson * disable nra_solver Signed-off-by: Lev Nachmanson --- src/math/lp/nla_core.cpp | 4 +-- src/math/lp/nra_solver.cpp | 50 ++++++++++++++++++++++++++------------ 2 files changed, 36 insertions(+), 18 deletions(-) diff --git a/src/math/lp/nla_core.cpp b/src/math/lp/nla_core.cpp index 3151a1223..fdf96b9ef 100644 --- a/src/math/lp/nla_core.cpp +++ b/src/math/lp/nla_core.cpp @@ -28,8 +28,8 @@ core::core(lp::lar_solver& s, reslimit & lim) : m_order(this), m_monotone(this), m_intervals(this, lim), - m_horner(this), m_monomial_bounds(this), + m_horner(this), m_pdd_manager(s.number_of_vars()), m_pdd_grobner(lim, m_pdd_manager), m_emons(m_evars), @@ -1474,7 +1474,7 @@ lbool core::check(vector& l_vec) { m_tangents.tangent_lemma(); } -#if 0 +#if 1 if (l_vec.empty() && !done()) ret = m_nra.check(); #endif diff --git a/src/math/lp/nra_solver.cpp b/src/math/lp/nra_solver.cpp index 77f4a3528..f7f2a7a94 100644 --- a/src/math/lp/nra_solver.cpp +++ b/src/math/lp/nra_solver.cpp @@ -9,7 +9,7 @@ #include "math/polynomial/polynomial.h" #include "math/polynomial/algebraic_numbers.h" #include "util/map.h" -#include "util/uint_set.h" +#include "math/lp/u_set.h" #include "math/lp/nla_core.h" @@ -23,8 +23,7 @@ struct solver::imp { reslimit& m_limit; params_ref m_params; u_map m_lp2nl; // map from lar_solver variables to nlsat::solver variables - svector m_terms; - uint_set m_term_set; + lp::u_set m_term_set; scoped_ptr m_nlsat; scoped_ptr m_zero; mutable variable_map_type m_variable_values; // current model @@ -55,8 +54,7 @@ struct solver::imp { SASSERT(need_check()); m_nlsat = alloc(nlsat::solver, m_limit, m_params, false); m_zero = alloc(scoped_anum, am()); - m_terms.reset(); - m_term_set.reset(); + m_term_set.clear(); m_lp2nl.reset(); vector core; @@ -69,8 +67,8 @@ struct solver::imp { for (auto const& m : m_nla_core.emons()) { add_monic_eq(m); } - for (unsigned i = 0; i < m_terms.size(); ++i) { - add_term(m_terms[i]); + for (unsigned i : m_term_set) { + add_term(i); } // TBD: add variable bounds? @@ -185,21 +183,41 @@ struct solver::imp { r = m_nlsat->mk_var(is_int(v)); m_lp2nl.insert(v, r); TRACE("arith", tout << "j" << v << " := x" << r << "\n";); -#if 0 - // TBD: - if (m_nla_core.is_from_a_term(v) && !m_term_set.contains(v)) { - m_terms.push_back(m_nla_core.column2tv(v)); +#if 1 + if (!m_term_set.contains(v) && s.column_corresponds_to_term(v)) { + if (v >= m_term_set.size()) + m_term_set.resize(v + 1); + m_term_set.insert(v); } #endif } return r; } - - void add_term(lp::tv const& t) { -#if 0 - // TBD: code that creates a polynomial equality between the linear coefficients and + // + void add_term(unsigned term_column) { + lp::tv ti = lp::tv::raw(s.adjust_column_index_to_term_index(term_column)); + const lp::lar_term& t = s.get_term(ti); + // code that creates a polynomial equality between the linear coefficients and // variable representing the term. -#endif + svector vars; + rational den(1); + for (const auto& kv : t) { + vars.push_back(lp2nl(kv.column().index())); + den = lcm(den, denominator(kv.coeff())); + } + vars.push_back(lp2nl(term_column)); + + vector coeffs; + for (auto kv : t) { + coeffs.push_back(den * kv.coeff()); + } + coeffs.push_back(-den); + polynomial::manager& pm = m_nlsat->pm(); + polynomial::polynomial_ref p(pm.mk_linear(coeffs.size(), coeffs.c_ptr(), vars.c_ptr(), rational(0)), pm); + polynomial::polynomial* ps[1] = { p }; + bool is_even[1] = { false }; + nlsat::literal lit = m_nlsat->mk_ineq_literal(nlsat::atom::kind::EQ, 1, ps, is_even); + m_nlsat->mk_clause(1, &lit, nullptr); } nlsat::anum const& value(lp::var_index v) const {