If for example there is a computation such as `temp = 100.0 * exp(-temp);` the execution throws a memory out of bound error pointing to that line. A temporary fix is to separate the computation into two, such as, `temp = exp(-temp); temp = 100 * temp;`