You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
484 B
12 lines
484 B
|
|
struct timer{
|
|
std::chrono::high_resolution_clock::time_point t1;
|
|
std::chrono::high_resolution_clock::time_point t2;
|
|
void start(){t1 = std::chrono::high_resolution_clock::now();}
|
|
void end(){t2 = std::chrono::high_resolution_clock::now();}
|
|
double duration(){ return std::chrono::duration_cast<std::chrono::microseconds>( t2 - t1 ).count();}
|
|
};
|
|
|
|
double rand_between(double lower, double upper){
|
|
return lower + (randomMT() * 1.0 / UINT32_MAX) * (upper - lower);
|
|
} |