1 | =================================================================
|
---|
2 | dSFMT ver. 2.1
|
---|
3 | 2009.04.18
|
---|
4 |
|
---|
5 | double precision SIMD oriented Fast Mersenne Twister(dSFMT)
|
---|
6 | based on IEEE 754 floating point format.
|
---|
7 |
|
---|
8 | Mutsuo Saito (Hiroshima University) and
|
---|
9 | Makoto Matsumoto (Hiroshima University)
|
---|
10 |
|
---|
11 | Copyright (C) 2007, 2008, 2009 Mutsuo Saito, Makoto Matsumoto and
|
---|
12 | Hiroshima University. All rights reserved.
|
---|
13 |
|
---|
14 | The (modified) BSD License is applied to this software, see
|
---|
15 | LICENSE.txt
|
---|
16 | =================================================================
|
---|
17 | The documents written in English is the official one.
|
---|
18 |
|
---|
19 | dSFMT ver. 2.0 and ver. 2.1 are completely different from dSFMT ver 1.xx.
|
---|
20 | The algorithm is changed.
|
---|
21 |
|
---|
22 | This program only works on systems which have IEEE754 floating point
|
---|
23 | format.
|
---|
24 |
|
---|
25 | This version uses `struct' of C language.
|
---|
26 | Don't use different DSFMT_MEXP for compiling dSFMT.c and your program.
|
---|
27 |
|
---|
28 | To see documents, see html/index.html.
|
---|
29 |
|
---|
30 | To make test program, see html/howto-compile.html.
|
---|
31 | If your CPU is BIG ENDIAN and your compiler is not gcc,
|
---|
32 | define DSFMT_BIG_ENDIAN preprocessor macro, please.
|
---|
33 |
|
---|
34 | If you want to redistribute and/or change source files, see LICENSE.txt.
|
---|
35 |
|
---|
36 | When you change these files and redistribute them, PLEASE write your
|
---|
37 | e-mail address in redistribution and write to contact YOU first if
|
---|
38 | users of your changed source encounter troubles.
|
---|