| 326 | } |
| 327 | |
| 328 | uint64_t random_uint(bitgen_t *bitgen_state) { |
| 329 | #if ULONG_MAX <= 0xffffffffUL |
| 330 | return next_uint32(bitgen_state); |
| 331 | #else |
| 332 | return next_uint64(bitgen_state); |
| 333 | #endif |
| 334 | } |
| 335 | |
| 336 | /* |
| 337 | * log-gamma function to support some of these distributions. The |
nothing calls this directly
no test coverage detected