summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-12-16 13:26:53 +0100
committerTyge Løvset <[email protected]>2020-12-16 13:26:53 +0100
commita9498a706b53820817039caba6574f6a34ae78ff (patch)
treebdd932fc187f0e4c41ba3540c5d917f55b0b0002 /docs
parent2ec68438ef7e9f5d33a2bdfe2c031b592256fe9b (diff)
downloadSTC-modified-a9498a706b53820817039caba6574f6a34ae78ff.tar.gz
STC-modified-a9498a706b53820817039caba6574f6a34ae78ff.zip
Removed text repetition.
Diffstat (limited to 'docs')
-rw-r--r--docs/crandom_api.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/crandom_api.md b/docs/crandom_api.md
index 50bd5aeb..5fc89e78 100644
--- a/docs/crandom_api.md
+++ b/docs/crandom_api.md
@@ -1,11 +1,11 @@
# Module crandom: Pseudo Random Number Generators
-This describes the API of module **crand**. It contains a *64-bit PRNG* by Tyge Løvset,
-and can generate both uniform and normal distributed random numbers.
+This describes the API of module **crand**. It contains a *64-bit PRNG*, and can generate
+bounded uniform and normal distributed random numbers.
**crand** is an extremely fast PRNG by Tyge Løvset, suited for parallel usage. It features a
Weyl-sequence as part of the state. It is faster than *sfc64*, *wyhash64*, *pcg64*, and almost
-50% faster than *xoshiro256\*\** compiled with GCC. It does not require fast multiplication or
+50% faster than *xoshiro256\*\** on common platforms. It does not require fast multiplication or
128-bit integer operations. It has a 256 bit state, but updates only 192 bit per generated
number.