diff --git a/include/boost/math/distributions/non_central_f.hpp b/include/boost/math/distributions/non_central_f.hpp index 60d5926a9..2d40e3b53 100644 --- a/include/boost/math/distributions/non_central_f.hpp +++ b/include/boost/math/distributions/non_central_f.hpp @@ -62,7 +62,7 @@ namespace boost // and p drops below 1e-7, the function f becomes // numerically unstable. Thus, we can't find nc below this point. // See PR 1345 for more details. - if (abs(f(tools::min_value()) / p) <= 1e-7){ + if (abs(f(0) / p) <= 1e-7){ return 0; }