12 lines
No EOL
178 B
C++
12 lines
No EOL
178 B
C++
|
|
|
|
#include "Random.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace tp {
|
|
flt8 randf() {
|
|
flt8 r = static_cast<flt8>(std::rand()) / static_cast<flt8>(RAND_MAX);
|
|
return r;
|
|
}
|
|
}; |