#include "Random.hpp" #include namespace tp { flt8 randf() { flt8 r = static_cast(std::rand()) / static_cast(RAND_MAX); return r; } };