QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
quickcpplib::_xxx::algorithm::small_prng Namespace Reference

Classes

class  small_prng
 From http://burtleburtle.net/bob/rand/smallprng.html, a not awful fast random number source. More...
 

Functions

small_prngthread_local_prng ()
 A thread safe small prng seeded with the thread id.
 
template<class RandomIt >
void random_shuffle (RandomIt first, RandomIt last, small_prng &r=thread_local_prng())
 A random_shuffle implementation which uses the small prng.
 

Function Documentation

◆ thread_local_prng()

small_prng & quickcpplib::_xxx::algorithm::small_prng::thread_local_prng ( )
inline

A thread safe small prng seeded with the thread id.

79 {
80#ifdef QUICKCPPLIB_THREAD_LOCAL_IS_CXX11
81 static thread_local small_prng v(utils::thread::this_thread_id());
82 return v;
83#else
84 static QUICKCPPLIB_THREAD_LOCAL small_prng *v;
85 if(!v)
86 v = new small_prng(utils::thread::this_thread_id()); // leaks memory
87 return *v;
88#endif
89 }
From http://burtleburtle.net/bob/rand/smallprng.html, a not awful fast random number source.
Definition small_prng.hpp:44

◆ random_shuffle()

template<class RandomIt >
void quickcpplib::_xxx::algorithm::small_prng::random_shuffle ( RandomIt  first,
RandomIt  last,
small_prng r = thread_local_prng() 
)

A random_shuffle implementation which uses the small prng.

93 {
94 typename std::iterator_traits<RandomIt>::difference_type i, n;
95 n = last - first;
96 for(i = n - 1; i > 0; --i)
97 {
98 using std::swap;
99 swap(first[i], first[r() % (i + 1)]);
100 }
101 }