3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

Tune Grobner equations

\brief convert p == 0 into a solved form v == r, such that
   v has bounds [lo, oo) iff r has bounds [lo', oo)
   v has bounds (oo,hi]  iff r has bounds (oo,hi']

   The solved form allows the Grobner solver identify more bounds conflicts.
   A bad leading term can miss bounds conflicts.
   For example for x + y + z == 0 where x, y : [0, oo) and z : (oo,0]
   we prefer to solve z == -x - y instead of x == -z - y
   because the solution -z - y has neither an upper, nor a lower bound.

The Grobner solver is augmented with a notion of a substitution that is applied before the solver is run.
This commit is contained in:
Nikolaj Bjorner 2022-07-11 16:14:26 -07:00
parent f33c933241
commit 316ed778e0
5 changed files with 127 additions and 13 deletions

View file

@ -1308,7 +1308,7 @@ namespace dd {
else if (l == lo() && h == hi())
return *this;
else
return m.mk_var(v)*h + l;
return m.mk_var(var())*h + l;
}