Made some refactoring changes to avoid compiler warnings on gcc 13.2.0.
The most drastic changes are to call (void)param to avoid [-Wunused-parameter] warnings for input argument param, and to replace std::random_shuffle with std::shuffle using a randomizer from .
Made some refactoring changes to avoid compiler warnings on gcc 13.2.0. The most drastic changes are to call.
(void)param
to avoid [-Wunused-parameter] warnings for input argumentparam
, and to replace std::random_shuffle with std::shuffle using a randomizer from