Skip to content
Snippets Groups Projects
Commit 91bce7cc authored by Stefan Paquay's avatar Stefan Paquay
Browse files

Replaced std::fabs with fabs.

parent 076990c2
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ public: ...@@ -72,7 +72,7 @@ public:
ff = x(t) - xx; ff = x(t) - xx;
ffp = xp(t); ffp = xp(t);
double res = ff; double res = ff;
if( std::fabs( res ) < tol ){ if( fabs( res ) < tol ){
return t; return t;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment