-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add Inverse_binomial_cdf Presto function #5382
Conversation
✅ Deploy Preview for meta-velox canceled.
|
Formatting Corrections
aec7c00
to
b680227
Compare
Fuzzer test is hanging. I’ve isolated the cause of the hang to the line of code below. I'm not sure if anyone else has experienced anything like this but I will continue to debug. Line of code (Probability.h)
Fuzzer output snippet
|
I've tracked down the cause of the hang in the fuzzer test to When fuzzer passes my function the inputs boost/math/distributions/detail/inv_discrete_quantile.hpp
|
The failure in the fuzzer test seems to be caused by a bug in boost/math/distributions/detail/inv_discrete_quantile.hpp
Reproduction steps
|
@mbasmanova, @Yuhta, @amitkdutta : Any suggestions ? |
@rrando901 @aditi-pandit The bug in |
Fixing it in boost: boostorg/math#1007. In the meantime, we can add this line before any includes of boost/math to work around this: #define BOOST_MATH_DISCRETE_QUANTILE_POLICY real |
This pull request has been automatically marked as stale because it has not had recent activity. If you'd still like this PR merged, please comment on the PR, make sure you've addressed reviewer comments, and rebase on the latest main. Thank you for your contributions! |
Add Presto function Inverse_binomial_cdf following the Java implementation(source)
Resolves: #5251