basant307/AI_Governance_Project
048
1// https://en.wikipedia.org/wiki/Linear_congruential_generator#Parameters_in_common_use2const a = 1664525;3const c = 1013904223;4const m = 4294967296; // 2^325 6export default function() {7 let s = 1;8 return () => (s = (a * s + c) % m) / m;9}10 