From 2651bed3b598a9190670723ab86e9e66acf3d531 Mon Sep 17 00:00:00 2001 From: Viral Shah Date: Sun, 3 Jul 2011 10:50:27 +0530 Subject: [PATCH] Add Mersenne Twister to README. --- README.md | 2 ++ external/random/.gitignore | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 external/random/.gitignore diff --git a/README.md b/README.md index f2de96d242702..ddfa6d2496405 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ For a more in-depth discussion of the rationale and advantages of Julia over oth - **[gcc, g++, gfortran][gcc]** — compiling and linking C, C++ and Fortran code. - **[curl][]** — to automatically download external libraries: - **[fdlibm][]** — a portable implementation of much of the system-dependent libm math library's functionality. + - **[MT][]** - Mersenne Twister is a fast pseudorandom number generator - **[OpenBLAS][]** — a fast, open, and maintained [basic linear algebar subprograms (BLAS)](http://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms) library, based on [Kazushige Goto's](http://en.wikipedia.org/wiki/Kazushige_Goto) famous [GotoBLAS](http://www.tacc.utexas.edu/tacc-projects/gotoblas2/). - **[LAPACK][]** — library of linear algebra routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. - **[ARPACK][]** — a collection of subroutines designed to solve large, sparse eigenvalue problems. @@ -38,6 +39,7 @@ For a more in-depth discussion of the rationale and advantages of Julia over oth [gcc]: http://gcc.gnu.org/ [curl]: http://curl.haxx.se/ [fdlibm]: http://www.netlib.org/fdlibm/readme +[MT]: http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html [OpenBLAS]: https://github.com/xianyi/OpenBLAS#readme [LAPACK]: http://www.netlib.org/lapack/ [ARPACK]: http://www.caam.rice.edu/software/ARPACK/ diff --git a/external/random/.gitignore b/external/random/.gitignore new file mode 100644 index 0000000000000..8775bf8eb719a --- /dev/null +++ b/external/random/.gitignore @@ -0,0 +1,3 @@ +/dsfmt-* +/mt19937-64* +/libMT*