You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Kolmogorov Smirnov tests for distributions (#1494, #1504, #1525, #1530)
Fixes
Fix Knuth's method so Poisson doesn't return -1.0 for small lambda (#1284)
Fix Poisson distribution instantiation so it return an error if lambda is infinite (#1291)
Fix Dirichlet sample for small alpha values to avoid NaN samples (#1209)
Fix infinite loop in Binomial distribution (#1325)
Fix Pert distribution where mode is close to (min + max) / 2 (#1452)
Fix panic in Binomial (#1484)
Limit the maximal acceptable lambda for Poisson to solve (#1312) (#1498)
Fix bug in Hypergeometric, this is a Value-breaking change (#1510)
Other changes
Remove unused fields from Gamma, NormalInverseGaussian and Zipf distributions (#1184)
This breaks serialization compatibility with older versions.
Add plots for rand_distr distributions to documentation (#1434)
Move some of the computations in Binomial from sample to new (#1484)
Reimplement Poisson's rejection method to improve performance and correct sampling inaccuracies for large lambda values, this is a Value-breaking change (#1560)