core: introduce evenly distributed int64 random in range
Tarantool codebase had at least two functions to generate random integer in given range and both of them had problems at least with integer overflow. This patch brings nice functions to generate random int64_t in given range without overflow while preserving uniform random generator distribution using unbiased bitmask with rejection method. It is now possible to use xoshiro256++ PRNG or random bytes as a basis. Most relevant replacements have been made. Needed tests are introduced. Closes #5075
Showing
- src/lib/core/CMakeLists.txt 1 addition, 1 deletionsrc/lib/core/CMakeLists.txt
- src/lib/core/random.c 99 additions, 0 deletionssrc/lib/core/random.c
- src/lib/core/random.h 43 additions, 0 deletionssrc/lib/core/random.h
- src/lib/swim/swim.c 4 additions, 22 deletionssrc/lib/swim/swim.c
- test/unit/CMakeLists.txt 3 additions, 1 deletiontest/unit/CMakeLists.txt
- test/unit/histogram.c 3 additions, 9 deletionstest/unit/histogram.c
- test/unit/random.c 59 additions, 0 deletionstest/unit/random.c
- test/unit/random.result 59 additions, 0 deletionstest/unit/random.result
- test/unit/swim_test_utils.c 1 addition, 0 deletionstest/unit/swim_test_utils.c
Loading
Please register or sign in to comment