Question: When i calc int() I receive Error, (in signum/main) too many levels of recursion

I try to calculate integral from complicated function (contain sqrt from complex varianles, Imaganary and real part, Matrix and so on).

When I exec command

evalf(Int(f(z), z=0.0..0.1));

it works correct

When i try to increase limits on integral, i have error

evalf(Int(f(z), z=0.0..0.2));

Error, (in signum/main) too many levels of recursion

 

I use Maple on Windows, May be it hardware limit?

command kernelopts returns

kernelopts(stacklimit);
                                   131040
 

How can I fix this error

Please Wait...