Si vous recherchez des exemples de création d'un générateur de nombres aléatoires (pseudo) prédéfini, vous rencontrerez des choses comme celle-ci (exemple spécifique http://indiegamr.com/generate-repeatable-random-numbers-in-js/ ):
// the initial seed
Math.seed = 6;
// in order to work 'Math.seed' must NOT be undefined,
// so in any case, you HAVE to provide a Math.seed
Math.seededRandom = function(max, min) {
max = max || 1;
min = min || 0;
Math.seed = (Math.seed * 9301 + 49297) % 233280;
var rnd = Math.seed / 233280;
return min + rnd * (max - min);
}
Ces nombres spécifiques (9301, 49297, 233280) et algorithme sont utilisés maintes et maintes fois, mais personne ne semble avoir de référence définitive pour cela. Qui a inventé cet algorithme et testé la distribution? Y a-t-il un papier ou quelque chose à citer?