Skip to content

Instantly share code, notes, and snippets.

@abozhilov
Created June 8, 2012 09:42
Show Gist options
  • Save abozhilov/2894743 to your computer and use it in GitHub Desktop.
Save abozhilov/2894743 to your computer and use it in GitHub Desktop.
LCG
var lib = {
/*
* PRNG - Linear congruential generator
* The random cycle is 2^32
* @retuns {unsigned integer} Next random seed
*/
rand : (function () {
var seed = new Date;
return function () {
seed = (seed * 69069 + 1) >>> 0;
return seed;
};
})()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment