aboutsummaryrefslogtreecommitdiff
path: root/dep/SFMT/randomc.h
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-08-19 16:13:10 -0700
committersilinoron <none@none>2010-08-19 16:13:10 -0700
commitac59ff802b40f7bfd6b9a774a7cc2438fad99e2b (patch)
treeb50e32d86c27565b604c0b26331d7a913cc0db52 /dep/SFMT/randomc.h
parent21cf500cb1aae38772ff7b3b979fb5ab0a94c119 (diff)
Switch to using SIMD-oriented Fast Mersenne Twister for random number generation.
In testing, reduced random number generation time by a factor of 8-10. Drops support for processors older than Pentium 4. Drop Mersenne Twister library; use a C++ SFMT library. --HG-- branch : trunk
Diffstat (limited to 'dep/SFMT/randomc.h')
-rw-r--r--dep/SFMT/randomc.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/dep/SFMT/randomc.h b/dep/SFMT/randomc.h
new file mode 100644
index 00000000000..5370a701c0e
--- /dev/null
+++ b/dep/SFMT/randomc.h
@@ -0,0 +1,65 @@
+/*
+ * Copyright notice
+ * ================
+ * GNU General Public License http://www.gnu.org/licenses/gpl.html
+ * This C++ implementation of SFMT contains parts of the original C code
+ * which was published under the following BSD license, which is therefore
+ * in effect in addition to the GNU General Public License.
+ * Copyright (c) 2006, 2007 by Mutsuo Saito, Makoto Matsumoto and Hiroshima University.
+ * Copyright (c) 2008 by Agner Fog.
+ * Copyright (c) 2010 Trinity Core
+ *
+ * BSD License:
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * > Redistributions of source code must retain the above copyright notice,
+ * this list of conditions and the following disclaimer.
+ * > Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ * > Neither the name of the Hiroshima University nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef RANDOMC_H
+#define RANDOMC_H
+
+// Define integer types with known size: int32_t, uint32_t, int64_t, uint64_t.
+// If this doesn't work then insert compiler-specific definitions here:
+#if defined(__GNUC__)
+ // Compilers supporting C99 or C++0x have inttypes.h defining these integer types
+ #include <inttypes.h>
+ #define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers
+#elif defined(_WIN16) || defined(__MSDOS__) || defined(_MSDOS)
+ // 16 bit systems use long int for 32 bit integer
+ typedef signed long int int32_t;
+ typedef unsigned long int uint32_t;
+#elif defined(_MSC_VER)
+ // Microsoft have their own definition
+ typedef signed __int32 int32_t;
+ typedef unsigned __int32 uint32_t;
+ typedef signed __int64 int64_t;
+ typedef unsigned __int64 uint64_t;
+ #define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers
+#else
+ // This works with most compilers
+ typedef signed int int32_t;
+ typedef unsigned int uint32_t;
+ typedef long long int64_t;
+ typedef unsigned long long uint64_t;
+ #define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers
+#endif
+
+#endif // RANDOMC_H