exception caught, "Interval error: power(x, n): n == 0 and x contains 0.
left=0 right=0
It turns out that the exception comes from CAPD and it seems that it's related to its derivation routine. When I replace v^1 with v, the problem goes away. I'll do the following:
Do preprocessing to replace x^n with x when n is evaluated to 1.
benchmarks/drh/bouncing_ball/bouncing_ball.drh generates exceptions. For example, here is one:
It turns out that the exception comes from CAPD and it seems that it's related to its derivation routine. When I replace
v^1
withv
, the problem goes away. I'll do the following:x^n
withx
whenn
is evaluated to1
.