slope 0.29.0
Loading...
Searching...
No Matches
timer.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <chrono>
9
10namespace slope {
11
18class Timer
19{
20private:
21 std::chrono::time_point<std::chrono::high_resolution_clock> start_time;
22 std::chrono::microseconds accumulated_time;
23 bool is_running = false;
24
25public:
29 void start();
30
34 void pause();
35
39 void resume();
40
45 double elapsed() const;
46};
47
48} // namespace slope
Timer class for measuring elapsed time with high resolution.
Definition timer.h:19
void start()
Starts the timer by recording the current time point.
Definition timer.cpp:6
void resume()
Resumes the timer after a pause.
Definition timer.cpp:25
double elapsed() const
Returns the elapsed time in seconds since start() was called.
Definition timer.cpp:34
void pause()
Pauses the timer.
Definition timer.cpp:14
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5