-
While testing for speed some PRNG methods (notably, nextInt(int)) using JMH, results for GraalVM were, as expected, significantly better than HotSpot's, in some cases spectacularly. However, there is …
-
Do some reorganization of the docs with the goals of:
- keeping a linear tutorial flow, visiting certain topics multiple times to build up understanding
- deduplicating material
- removing the “Use…
-
It would be cool to see more wipe method / prng added, because now we only have a few choice for prng and wiping method, for example you can try adding those wipe method:
Bruce Schneier: (7 passes)…
-
Ahoy,
I've been thinking about the overall quality of PRNGs (Pseudorandom Number Generators) and their importance. The initial entropy verification process only gives an indication of the quality o…
-
All Cirq simulators maintain an internal `np.random.RandomState` https://github.com/quantumlib/Cirq/blob/e1b03ef63af4270d6a185df3db6e43c8232c6a71/cirq-core/cirq/sim/sparse_simulator.py#L130
This is…
-
@newpavlov [commented](https://github.com/rust-random/rand/issues/1080#issuecomment-849617183):
> I think it may be useful to have `fill` methods for `u32`/`u64`. In some (AFAIK relatively rare) ca…
-
As discussed on Slack, it would be nice if Transducers supported more general PRNGs. e.g.
```julia
julia> using Transducers, Random
julia> function foo(rng, n)
trans = Map(_ -> rand…
-
the PRNG generates a different keystream on Py2 than it does on Python3, as such methods like `randrange_from_seed__trytryagain` are not constant over python versions
-
`coap/debug.h` defines the macros `info`, `warn`, `debug`. This is bad practice and worse is that these are some pretty common words which may already be in use in other applications and libraries. Si…
-
It would be nice to control the distribution of values returned by the Randomness class.
As Randomness is not created in user code, its methods should have an additional argument controlling the dist…