Add manual seed input for rando generation (#2057)

* add manual seed input for rando generation

* add tooltip for seed input

* switch to calloc

* add seed testing count generator

* add console command for rando gen

* add boost and custom hash_32 functions

* use hash_32 funcs for rando generation

* limit seed input field to uint32

* rename custom boost header imports to boost_custom
This commit is contained in:
Adam Bird 2023-01-25 18:33:27 -05:00 committed by GitHub
parent 170a9103f9
commit 589e25948e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 540 additions and 47 deletions

View file

@ -0,0 +1,9 @@
#ifndef BOOST_CONTAINER_HASH_VERSION_HPP
#define BOOST_CONTAINER_HASH_VERSION_HPP
#include <boost/version.hpp>
#define BOOST_VERSION_HAS_HASH_RANGE ((BOOST_VERSION / 100 % 1000) >= 81)
#endif // #ifndef BOOST_CONTAINER_HASH_VERSION_HPP