momentumopt
Clock.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <chrono>
12 
13 namespace momentumopt {
14 
18  class Clock {
19  public:
20  Clock(){}
21  ~Clock(){}
22 
23  void start() { ini_time_ = std::chrono::high_resolution_clock::now(); }
24  double stop() {
25  end_time_ = std::chrono::high_resolution_clock::now();
26  duration_ = std::chrono::duration_cast<std::chrono::microseconds>(end_time_-ini_time_);
27  return double(duration_.count())*1e-3;
28  }
29 
30  private:
31  std::chrono::microseconds duration_;
32  std::chrono::high_resolution_clock::time_point ini_time_, end_time_;
33  };
34 }
Helper class to measure time required to run an optimization procedure.
Definition: Clock.hpp:18