This documentation is automatically generated by competitive-verifier/competitive-verifier
#include "other/chrono-timer.hpp"
struct ChronoTimer {
chrono::high_resolution_clock::time_point st;
ChronoTimer() { reset(); }
void reset() { st = chrono::high_resolution_clock::now(); }
chrono::milliseconds::rep elapsed() {
auto ed = chrono::high_resolution_clock::now();
return chrono::duration_cast<chrono::milliseconds>(ed - st).count();
}
};
#line 1 "other/chrono-timer.hpp"
struct ChronoTimer {
chrono::high_resolution_clock::time_point st;
ChronoTimer() { reset(); }
void reset() { st = chrono::high_resolution_clock::now(); }
chrono::milliseconds::rep elapsed() {
auto ed = chrono::high_resolution_clock::now();
return chrono::duration_cast<chrono::milliseconds>(ed - st).count();
}
};