| /* |
| Copyright 2019 Alain Dargelas |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| /* |
| * File: Timer.h |
| * Author: alain |
| * |
| * Created on September 25, 2018, 7:48 PM |
| */ |
| |
| #ifndef TIMER_H |
| #define TIMER_H |
| #include <iostream> |
| #include <chrono> |
| #include <math.h> |
| |
| namespace SURELOG { |
| |
| class Timer { |
| public: |
| Timer() : beg_(clock_::now()) {} |
| |
| void reset() { beg_ = clock_::now(); } |
| |
| double elapsed() const { |
| return std::chrono::duration_cast<second_>(clock_::now() - beg_).count(); |
| } |
| |
| double elapsed_rounded() const { |
| double res = |
| std::chrono::duration_cast<second_>(clock_::now() - beg_).count(); |
| return round(res); |
| } |
| |
| double round(double f) const { |
| return floor(f * 500 + 0.5) / 500; |
| // return std::round(f * 5) / 5; // C++11 |
| } |
| |
| private: |
| typedef std::chrono::high_resolution_clock clock_; |
| typedef std::chrono::duration<double, std::ratio<1> > second_; |
| std::chrono::time_point<clock_> beg_; |
| }; |
| |
| }; // namespace SURELOG |
| |
| #endif /* TIMER_H */ |