Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for issue 845 #846

Merged
merged 2 commits into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions include/boost/math/distributions/non_central_beta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,12 @@ namespace boost
}
pois *= i / l2;
beta += xterm;
xterm *= (a + i - 1) / (x * (a + b + i - 2));

if (a + b + i != 2)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rather than putting an if inside the inner loop, it would be better to move calculation of xterm to the start of the loop: albeit it's inconvenient, and we have to be careful to get the algebra right ;)

Again this should wait till after the next release.

{
xterm *= (a + i - 1) / (x * (a + b + i - 2));
}

last_term = term;
}
for(int i = k + 1; ; ++i)
Expand Down Expand Up @@ -555,7 +560,11 @@ namespace boost
break;
}
pois *= i / l2;
beta *= (a + i - 1) / (x * (a + i + b - 1));

if (a + b + i != 1)
{
beta *= (a + i - 1) / (x * (a + i + b - 1));
}
}
for(int i = k + 1; ; ++i)
{
Expand Down
1 change: 1 addition & 0 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,7 @@ test-suite distribution_tests :

[ compile test_dist_deduction_guides.cpp : [ requires cpp_deduction_guides cpp_variadic_templates ] ]
[ run git_issue_800.cpp ../../test/build//boost_unit_test_framework ]
[ run git_issue_845.cpp ../../test/build//boost_unit_test_framework ]
;

test-suite mp :
Expand Down
59 changes: 59 additions & 0 deletions test/git_issue_845.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
// Copyright Matt Borland, 2022
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)

#include <cfenv>
#include <iostream>
#include <boost/math/distributions/non_central_f.hpp>
#include "math_unit_test.hpp"

#pragma STDC FENV_ACCESS ON

int main()
{
auto ncf1 = boost::math::non_central_f(2, 2, 2);
const auto cdf1 = boost::math::cdf(ncf1, 0.05);

// https://www.wolframalpha.com/input?i=N%5BCdf%28NonCentralFRatioDistribution%282%2C2%2C2%29%2C+0.05%29%2C+15%5D
CHECK_ULP_CLOSE(cdf1, 0.0183724431823392, 15);

if (std::fetestexcept(FE_INVALID) || std::fetestexcept(FE_DIVBYZERO))
{
return 1;
}

auto ncf2 = boost::math::non_central_f(1, 3, 2);
const auto cdf2 = boost::math::cdf(ncf2, 0.05);

// https://www.wolframalpha.com/input?i=N%5BCdf%28NonCentralFRatioDistribution%281%2C3%2C2%29%2C+0.05%29%2C+15%5D
CHECK_ULP_CLOSE(cdf2, 0.0611253404710995, 15);

if (std::fetestexcept(FE_INVALID) || std::fetestexcept(FE_DIVBYZERO))
{
return 2;
}

auto ncf3 = boost::math::non_central_f(1, 1, 2);
const auto cdf3 = boost::math::cdf(ncf3, 0.05);

// https://www.wolframalpha.com/input?i=N%5BCdf%28NonCentralFRatioDistribution%281%2C1%2C2%29%2C+0.05%29%2C+15%5D
CHECK_ULP_CLOSE(cdf3, 0.0531991288870987, 15);

if (std::fetestexcept(FE_INVALID) || std::fetestexcept(FE_DIVBYZERO))
{
return 3;
}

const auto pdf3 = boost::math::pdf(ncf3, 0.05);

// https://www.wolframalpha.com/input?i=N%5BPdf%28NonCentralFRatioDistribution%281%2C1%2C2%29%2C+0.05%29%2C+15%5D
CHECK_ULP_CLOSE(pdf3, 0.547785080683644, 15);

if (std::fetestexcept(FE_INVALID) || std::fetestexcept(FE_DIVBYZERO))
{
return 4;
}

return boost::math::test::report_errors();
}