3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

remove lar_solver from nla_intervals fields

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-06-06 10:17:42 -07:00
parent f5c3484fe2
commit f22252112e
3 changed files with 99 additions and 99 deletions

View file

@ -142,7 +142,6 @@ namespace nla {
im_config m_config;
interval_manager<im_config> m_imanager;
region m_region;
lp::lar_solver& m_solver;
typedef interval_manager<im_config>::interval interval;
@ -153,15 +152,14 @@ namespace nla {
ci_dependency* mk_dep(lp::constraint_index ci);
bool check(lp::lar_term const& t);
lp::lar_solver& ls();
public:
intervals(core* c, reslimit& lim, lp::lar_solver& s) :
intervals(core* c, reslimit& lim) :
m_core(c),
m_alloc("intervals"),
m_dep_manager(m_val_manager, m_alloc),
m_config(m_num_manager, m_dep_manager),
m_imanager(lim, im_config(m_num_manager, m_dep_manager)),
m_solver(s)
m_imanager(lim, im_config(m_num_manager, m_dep_manager))
{}
bool check();
bool monomial_has_lower_bound(lpvar j) const;