| 259 | } |
| 260 | |
| 261 | double now() |
| 262 | { |
| 263 | using namespace std::chrono; |
| 264 | auto now = high_resolution_clock::now(); |
| 265 | return duration_cast<duration<double>>(now.time_since_epoch()).count(); |
| 266 | } |
| 267 | |
| 268 | int main(int argc, char *argv[]) |
| 269 | { |
no test coverage detected