Replaced std::fabs with fabs.

This commit is contained in:
Stefan Paquay
2017-06-28 09:48:00 -04:00
parent 076990c28a
commit 91bce7ccf9

View File

@ -72,7 +72,7 @@ public:
ff = x(t) - xx;
ffp = xp(t);
double res = ff;
if( std::fabs( res ) < tol ){
if( fabs( res ) < tol ){
return t;
}
}