index.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. // A library of seedable RNGs implemented in Javascript.
  2. //
  3. // Usage:
  4. //
  5. // var seedrandom = require('seedrandom');
  6. // var random = seedrandom(1); // or any seed.
  7. // var x = random(); // 0 <= x < 1. Every bit is random.
  8. // var x = random.quick(); // 0 <= x < 1. 32 bits of randomness.
  9. // alea, a 53-bit multiply-with-carry generator by Johannes Baagøe.
  10. // Period: ~2^116
  11. // Reported to pass all BigCrush tests.
  12. var alea = require('./lib/alea');
  13. // xor128, a pure xor-shift generator by George Marsaglia.
  14. // Period: 2^128-1.
  15. // Reported to fail: MatrixRank and LinearComp.
  16. var xor128 = require('./lib/xor128');
  17. // xorwow, George Marsaglia's 160-bit xor-shift combined plus weyl.
  18. // Period: 2^192-2^32
  19. // Reported to fail: CollisionOver, SimpPoker, and LinearComp.
  20. var xorwow = require('./lib/xorwow');
  21. // xorshift7, by François Panneton and Pierre L'ecuyer, takes
  22. // a different approach: it adds robustness by allowing more shifts
  23. // than Marsaglia's original three. It is a 7-shift generator
  24. // with 256 bits, that passes BigCrush with no systmatic failures.
  25. // Period 2^256-1.
  26. // No systematic BigCrush failures reported.
  27. var xorshift7 = require('./lib/xorshift7');
  28. // xor4096, by Richard Brent, is a 4096-bit xor-shift with a
  29. // very long period that also adds a Weyl generator. It also passes
  30. // BigCrush with no systematic failures. Its long period may
  31. // be useful if you have many generators and need to avoid
  32. // collisions.
  33. // Period: 2^4128-2^32.
  34. // No systematic BigCrush failures reported.
  35. var xor4096 = require('./lib/xor4096');
  36. // Tyche-i, by Samuel Neves and Filipe Araujo, is a bit-shifting random
  37. // number generator derived from ChaCha, a modern stream cipher.
  38. // https://eden.dei.uc.pt/~sneves/pubs/2011-snfa2.pdf
  39. // Period: ~2^127
  40. // No systematic BigCrush failures reported.
  41. var tychei = require('./lib/tychei');
  42. // The original ARC4-based prng included in this library.
  43. // Period: ~2^1600
  44. var sr = require('./seedrandom');
  45. sr.alea = alea;
  46. sr.xor128 = xor128;
  47. sr.xorwow = xorwow;
  48. sr.xorshift7 = xorshift7;
  49. sr.xor4096 = xor4096;
  50. sr.tychei = tychei;
  51. module.exports = sr;