File size: 331 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import defaultSource from "./defaultSource.js";
export default (function sourceRandomExponential(source) {
function randomExponential(lambda) {
return function() {
return -Math.log1p(-source()) / lambda;
};
}
randomExponential.source = sourceRandomExponential;
return randomExponential;
})(defaultSource);
|