bound_texpr
could be more precise for non-linear expressions
#96
Labels
enhancement
New feature or request
bound_texpr
could be more precise for non-linear expressions
#96
Following a discussion with @jboillot in the Mopsa static analyzer, I believe
bound_texpr
could be more precise. Consider the case wherex >= y
andz >= 0
. Currently,bound_texpr
on(x-y)*z
returns[-oo,+oo]
, while it could return[0, +oo]
.I tried
bound_texpr
onx-y
, the result is precise. I also tried boundingx*y
whenx >= 0, y >= 0
, and got a precise result.Code to reproduce the issue:
Tried with apron 0.9.13, 0.9.14, using either the Polka or Octagon domain.
The text was updated successfully, but these errors were encountered: