Bullet Collision Detection & Physics Library
btRandom.h
Go to the documentation of this file.
1/*
2Copyright (c) 2003-2006 Gino van den Bergen / Erwin Coumans https://bulletphysics.org
3
4This software is provided 'as-is', without any express or implied warranty.
5In no event will the authors be held liable for any damages arising from the use of this software.
6Permission is granted to anyone to use this software for any purpose,
7including commercial applications, and to alter it and redistribute it freely,
8subject to the following restrictions:
9
101. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
112. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
123. This notice may not be removed or altered from any source distribution.
13*/
14
15#ifndef BT_GEN_RANDOM_H
16#define BT_GEN_RANDOM_H
17
18#ifdef MT19937
19
20#include <limits.h>
21#include <mt19937.h>
22
23#define GEN_RAND_MAX UINT_MAX
24
25SIMD_FORCE_INLINE void GEN_srand(unsigned int seed) { init_genrand(seed); }
26SIMD_FORCE_INLINE unsigned int GEN_rand() { return genrand_int32(); }
27
28#else
29
30#include <stdlib.h>
31
32#define GEN_RAND_MAX RAND_MAX
33
34SIMD_FORCE_INLINE void GEN_srand(unsigned int seed) { srand(seed); }
35SIMD_FORCE_INLINE unsigned int GEN_rand() { return rand(); }
36
37#endif
38
39#endif //BT_GEN_RANDOM_H
unsigned int GEN_rand()
Definition: btRandom.h:35
void GEN_srand(unsigned int seed)
Definition: btRandom.h:34
#define SIMD_FORCE_INLINE
Definition: btScalar.h:98
static unsigned long seed
Definition: btSoftBody.h:39