I’m a C++ Beginner, I would like to test out a Random Number Generator called PCG.
https://www.pcg-random.org/
Unfortuanetly, I’m not able to use it in my project.
I tried the most simplistic example giving in the documentation, nothing else:
https://www.pcg-random.org/using-pcg-cpp.html
But I get an error inside pcg_random.hpp in Line 1476 than, telling me that
class template “pcg_detail::extended<table_pow2, advance_pow2, baseclass, extvalclass, kdd>” has no member “advance”
but void advance(..) can be found at line 1225.
Why is it not working?
Thanks a lot for your help!