https://github.com/junghans/rngsse2
Random number generator library
https://github.com/junghans/rngsse2
Last synced: 7 months ago
JSON representation
Random number generator library
- Host: GitHub
- URL: https://github.com/junghans/rngsse2
- Owner: junghans
- Created: 2016-12-07T22:46:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-12T16:35:29.000Z (over 9 years ago)
- Last Synced: 2024-12-28T20:46:51.366Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 1.65 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
To compile the library:
cd source
make
To compile, for example, "mrg32k3a.c" in the current directory, with use of the library:
gcc -o mrg32k3a mrg32k3a.c -I../../include -L../../lib -lrngsse
To compile all the examples in C in the current directory, with use of the library:
bash -c 'for i in *.c; do gcc -o ${i%??} $i -I../../include -L../../lib -lrngsse; done'
To compile all the examples in FORTRAN in the current directory, with use of the library:
bash -c 'for i in *.f90; do gfortran -o ${i%????} $i -L../../lib -lrngsse; done'
Copyright L.Yu. Barash and L.N. Shchur (2011)
For more information on RNGSSE2 check out http://dx.doi.org/10.1016/j.cpc.2011.03.022.