aboutsummaryrefslogtreecommitdiff
path: root/dep/SFMT/CHANGE-LOG.txt
diff options
context:
space:
mode:
authordaMaex <damaex@live.de>2019-10-30 10:42:08 +0100
committerShauren <shauren.trinity@gmail.com>2021-12-19 00:12:41 +0100
commit08b40733a58da23ced34915cb67c0ef24e6e9059 (patch)
treebfbc36e2e6396cfde3accb05f970beb16063e44c /dep/SFMT/CHANGE-LOG.txt
parent5ae84caf23e42f1005cfa0437896a86e1cb40fd1 (diff)
Dep/SFMT: updated to newest upstream version from https://github.com/MersenneTwister-Lab/SFMT
* only needed files added * used CMake and SFMTRand from https://github.com/TrinityCore/TrinityCore/pull/23240 (Thank you Artox) (cherry picked from commit 4e0279b0e48c9992842010b9f3f132e54a460128)
Diffstat (limited to 'dep/SFMT/CHANGE-LOG.txt')
-rw-r--r--dep/SFMT/CHANGE-LOG.txt69
1 files changed, 69 insertions, 0 deletions
diff --git a/dep/SFMT/CHANGE-LOG.txt b/dep/SFMT/CHANGE-LOG.txt
new file mode 100644
index 00000000000..69d67f390dd
--- /dev/null
+++ b/dep/SFMT/CHANGE-LOG.txt
@@ -0,0 +1,69 @@
+ver 1.5
+-------
+bug fix to_res53 reported by Akio Takahashi.
+
+ver 1.4.1
+-------
+fix MSC compile error reported by Dirk Steenpass.
+
+ver 1.4
+-------
+internal state of SFMT is kept in structure.
+function and macro names are changed to have sfmt_ prefix.
+ALTIVEC OR BIGENDIAN ARE NOT TESTED AT ALL.
+
+ver 1.3.3
+-------
+change condition compile of do_recursion in SFMT.c
+
+ver 1.3.2
+-------
+bug fix to_res53_mix and genrand_res53_mix.
+
+ver 1.3.1
+-------
+gcc compile option changed from -O9 to -O3.
+add functions genrand_res53_mix and to_res53_mix.
+bug fix about definition of ALWAYS_INLINE.
+add new definition PRE_ALWAYS for MSC.
+
+ver 1.3
+-------
+bug fixed: -DONLY64 without -DBIG_ENIAN64 had been generating
+wrong sequence.
+bug fixed: There is no documentation about BIG_ENDIAN64.
+add automatic endian check by __BIG_ENDIAN__ predefined macro.
+bug fixed: change == in check.sh to =
+add SFMT-params216091.h
+add AltiVec parameter format for systems which are not osx.
+change Makefile for systems which are not osx and support AltiVec.
+change sample2 of howto-compile for Free BSD.
+change source files for BORLANDC and Visual Studio.
+change period certification code more smart.
+add params directory.
+
+ver 1.2.1
+-------
+Fix typo in SFMT-alti.c SFMT-sse2.c
+marge SFMT-alti.c and SFMT-alti.h into SFMT-alti.h
+marge SFMT-sse2.c and SFMT-sse2.h into SFMT-sse2.h
+This version is not released.
+
+ver 1.2
+-------
+Support many periods: 2^{607}, 2^{1279}, 2^{2281}, 2^{4253}, 2^{11213},
+2^{19937}, 2^{44497}, 2^{86243}, 2^{132049}
+Fix typo in LICENSE.txt.
+Add cast to vec_perm for SFMT-alti.c, SFMT-alti64.c.
+combine source codes.
+
+ver 1.1
+-------
+The period certification method is changed from constant to function.
+The convert functions from 32-bit and 64-bit integer to double are added.
+The documentation is changed.
+Sample programs are added.
+
+ver 1.0
+-------
+The first version.