source: node_modules/d3-force/src/lcg.js@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 245 bytes
Line 
1// https://en.wikipedia.org/wiki/Linear_congruential_generator#Parameters_in_common_use
2const a = 1664525;
3const c = 1013904223;
4const m = 4294967296; // 2^32
5
6export default function() {
7 let s = 1;
8 return () => (s = (a * s + c) % m) / m;
9}
Note: See TracBrowser for help on using the repository browser.