You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to use interval boxes in functions or types which require interval boxes, the returned type of such arithmetic operations should be an IntervalBox.
The text was updated successfully, but these errors were encountered:
Is there a reason not to have IntervalBoxes be the returned type in the above cases?
Tests actually check things like A + B == IntervalBox( A .+ B), which A and BIntervalBoxes. My suggestion is to that A + B returns directly IntervalBox( A .+ B).
I just noticed i actually don't need this in TaylorModels, but still it would be nice to have it like that. I'll send a PR tomorrow; I haven't completed the tests...
I just noticed the following behavior:
Similar behavior is obtained for other arithmetic operations and functions:
In order to use interval boxes in functions or types which require interval boxes, the returned type of such arithmetic operations should be an
IntervalBox
.The text was updated successfully, but these errors were encountered: