| 
									
										
										
										
											2017-01-14 23:34:51 -06:00
										 |  |  | // *Really* minimal PCG32 code / (c) 2014 M.E. O'Neill / pcg-random.org
 | 
					
						
							|  |  |  | // Licensed under Apache License 2.0 (NO WARRANTY, etc. see website)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef RANDOM_H
 | 
					
						
							|  |  |  | #define RANDOM_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/typedefs.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-14 23:34:51 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PCG_DEFAULT_INC_64 1442695040888963407ULL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { uint64_t state;  uint64_t inc; } pcg32_random_t; | 
					
						
							|  |  |  | uint32_t pcg32_random_r(pcg32_random_t* rng); | 
					
						
							| 
									
										
										
										
											2019-03-17 20:51:51 +03:00
										 |  |  | void pcg32_srandom_r(pcg32_random_t* rng, uint64_t initstate, uint64_t initseq); | 
					
						
							| 
									
										
										
										
											2020-10-29 15:40:53 +03:00
										 |  |  | uint32_t pcg32_boundedrand_r(pcg32_random_t* rng, uint32_t bound); | 
					
						
							| 
									
										
										
										
											2017-01-14 23:34:51 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // RANDOM_H
 |