Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Mar 29, 2019
1 parent 1e876e0 commit aff7f27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rand_distr/README.md
Expand Up @@ -11,9 +11,10 @@
Implements a full suite of random number distributions sampling routines.

This crate is a super-set of the [rand::distributions] module, including support
for sampling from Beta, Cauchy, ChiSquared, Dirichlet, exponential, Fisher F,
Gamma, Log-normal, Normal, Pareto, Poisson, StudentT, Triangular, Circle,
Sphere and Weibull distributions.
for sampling from Beta, Binomial, Cauchy, CircleChiSquared, Dirichlet, exponential,
Fisher F, Gamma, Log-normal, Normal, Pareto, Poisson, StudentT, Triangular and
Weibull distributions, as well as sampling points from the unit circle and unit
sphere surface.

It is worth mentioning the [statrs] crate which provides similar functionality
along with various support functions, including PDF and CDF computation. In
Expand Down
1 change: 1 addition & 0 deletions src/distributions/float.rs
Expand Up @@ -69,6 +69,7 @@ pub struct OpenClosed01;
pub struct Open01;


// This trait is needed by both this lib and rand_distr hence is a hidden export
#[doc(hidden)]
pub trait IntoFloat {
type F;
Expand Down

0 comments on commit aff7f27

Please sign in to comment.