RFR: 8302987: Add uniform and spatially equidistributed bounded float/double streams to RandomGenerator
Raffaello Giulietti
rgiulietti at openjdk.org
Wed Feb 22 15:35:21 UTC 2023
On Wed, 22 Feb 2023 15:23:13 GMT, Raffaello Giulietti <rgiulietti at openjdk.org> wrote:
> The `default` method `nextDouble(double origin, double bound)` in `java.util.random.RandomGenerator` aims at generating a uniformly and spatially equidistributed random `double` in the left-closed and right-open range [`origin`, `bound`). It does so by applying the affine transform `origin + (bound - origin) * r` to a uniformly and spatially equidistributed random `double` `r` in the range [0, 1).
>
> Since floating-point arithmetic suffers from small but noticeable rounding errors, this ends up slightly deforming the distribution of `r` when applying the affine transform.
A similar implementation for `float`s will be added once this PR has elicited some interest and the algorithm has undergone a first review.
A CSR and tests will then be added as well.
-------------
PR: https://git.openjdk.org/jdk/pull/12719
More information about the core-libs-dev
mailing list