Skip to content
Merged
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ Additionally, these features configure Rand:
- `nightly` includes some additions requiring nightly Rust
- `simd_support` (experimental) enables sampling of SIMD values
(uniformly random SIMD integers and floats), requiring nightly Rust
- `unbiased` use unbiased sampling for algorithms supporting this option: Uniform distribution.

(By default, bias affecting no more than one in 2^48 samples is accepted.)

Note: enabling this option is expected to affect reproducibility of results.

Note that nightly features are not stable and therefore not all library and
compiler versions will be compatible. This is especially true of Rand's
Expand Down