3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

propagate only one non-fixed monomial intrernally

lar_solver
This commit is contained in:
Lev Nachmanson 2023-09-28 17:24:34 -07:00
parent 29b5c47a8d
commit f30a2c13be
4 changed files with 23 additions and 82 deletions

View file

@ -17,7 +17,7 @@ namespace nla {
class monomial_bounds : common {
dep_intervals& dep;
u_dependency* explain_fixed(const svector<lpvar>& vars, lpvar non_fixed);
void var2interval(lpvar v, scoped_dep_interval& i);
bool is_too_big(mpq const& q) const;
bool propagate_value(dep_interval& range, lpvar v);
@ -35,6 +35,6 @@ namespace nla {
public:
monomial_bounds(core* core);
void propagate();
void propagate_nonfixed(lpvar monic_var, const svector<lpvar>& vars, lpvar non_fixed, const rational& k);
};
}