Skip to content

Commit 8d0ab34

Browse files
committed
Add prng refs
1 parent cfeb97f commit 8d0ab34

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

docs/references/bib.bib

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,3 +459,91 @@ @article{marsaglia:1964
459459
volume = {6},
460460
year = {1964},
461461
}
462+
463+
@article{park:1988,
464+
abstract = {Practical and theoretical issues are presented concerning the design, implementation, and use of a good, minimal standard random number generator that will port to virtually all systems.},
465+
acmid = {63042},
466+
address = {New York, NY, USA},
467+
author = {S. K. Park and K. W. Miller},
468+
doi = {10.1145/63039.63042},
469+
issn = {0001-0782},
470+
issue_date = {Oct. 1988},
471+
journal = {Communications of the ACM},
472+
keywords = {random, prng, rng, pseudorandom, number, generator},
473+
month = {oct},
474+
number = {10},
475+
numpages = {10},
476+
pages = {1192--1201},
477+
publisher = {ACM},
478+
title = {{Random Number Generators: Good Ones Are Hard to Find}},
479+
url = {http://doi.acm.org/10.1145/63039.63042},
480+
volume = {31},
481+
year = {1988},
482+
}
483+
484+
@book{press:1992,
485+
author = {William H. Press and Brian P. Flannery and Saul A. Teukolsky and William T. Vetterling},
486+
isbn = {0521431085},
487+
keywords = {computing, software, programming},
488+
publisher = {Cambridge University Press},
489+
title = {{Numerical Recipes in C: The Art of Scientific Computing, Second Edition}},
490+
year = {1992},
491+
}
492+
493+
@article{bays:1976,
494+
abstract = {},
495+
acmid = {355670},
496+
address = {New York, NY, USA},
497+
author = {Carter Bays and S. D. Durham},
498+
doi = {10.1145/355666.355670},
499+
issue_date = {March 1976},
500+
journal = {ACM Trans. Math. Softw.},
501+
keywords = {lcg, random, rnd, minstd, rand, rng, prng, pseudorandom, number, generator, linear congruential generator},
502+
month = {mar},
503+
number = {1},
504+
numpages = {6},
505+
issn = {0098-3500},
506+
pages = {59--64},
507+
publisher = {ACM},
508+
title = {{Improving a Poor Random Number Generator}},
509+
url = {http://doi.acm.org/10.1145/355666.355670},
510+
volume = {2},
511+
year = {1976},
512+
}
513+
514+
@book{herzog:2002,
515+
author = {T.N. Herzog and G. Lord},
516+
isbn = {9781566984331},
517+
keywords = {finance, monte carlo, prng, rng, random, minstd, minstd-shuffle},
518+
lccn = {2002015049},
519+
pages = {19--},
520+
publisher = {ACTEX Publications},
521+
title = {{Applications of Monte Carlo Methods to Finance and Insurance}},
522+
url = {https://books.google.com/books?id=vC7I\_gdX-A0C},
523+
year = {2002},
524+
}
525+
526+
@book{knuth:1997,
527+
address = {Boston, MA, USA},
528+
author = {Donald E. Knuth},
529+
isbn = {0-201-89684-2},
530+
publisher = {Addison-Wesley Longman Publishing Co., Inc.},
531+
title = {{The Art of Computer Programming, Volume 2 (3rd Ed.): Seminumerical Algorithms}},
532+
year = {1997},
533+
}
534+
535+
@article{hormann:1993,
536+
abstract = {The transformed rejection method, a combination of the inversion and the rejection method, which is used to generate non-uniform random numbers from a variety of continuous distributions can be applied to discrete distributions as well. For the Poisson distribution a short and simple algorithm is obtained which is well suited for large values of the Poisson parameter μ, even when μ may vary from call to call. The average number of uniform deviates required is lower than for any of the known uniformly fast algorithms. Timings for a C implementation show that the algorithm needs only half of the code but is - for μ not too small - at least as fast as the current state-of-the-art algorithms.},
537+
author = {W. H\"{o}rmann},
538+
doi = {10.1016/0167-6687(93)90997-4},
539+
issn = {0167-6687},
540+
journal = {Insurance: Mathematics and Economics},
541+
keywords = {Rejection method, Inversion, Decomposition, Poisson variate generation, Uniformly fast algorithm},
542+
note = {},
543+
number = {1},
544+
pages = {39--45},
545+
title = {{The transformed rejection method for generating Poisson random variables}},
546+
url = {http://www.sciencedirect.com/science/article/pii/0167668793909974},
547+
volume = {12},
548+
year = {1993},
549+
}

docs/references/templates/book.bib

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@book{id,
2+
author = {},
3+
keywords = {},
4+
publisher = {},
5+
title = {{}},
6+
year = {},
7+
}

0 commit comments

Comments
 (0)