sl@0: // boost timer.hpp header file ---------------------------------------------// sl@0: sl@0: // Copyright Beman Dawes 1994-99. Distributed under the Boost sl@0: // Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org/libs/timer for documentation. sl@0: sl@0: // Revision History sl@0: // 01 Apr 01 Modified to use new header. (JMaddock) sl@0: // 12 Jan 01 Change to inline implementation to allow use without library sl@0: // builds. See docs for more rationale. (Beman Dawes) sl@0: // 25 Sep 99 elapsed_max() and elapsed_min() added (John Maddock) sl@0: // 16 Jul 99 Second beta sl@0: // 6 Jul 99 Initial boost version sl@0: sl@0: #ifndef BOOST_TIMER_HPP sl@0: #define BOOST_TIMER_HPP sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: # ifdef BOOST_NO_STDC_NAMESPACE sl@0: namespace std { using ::clock_t; using ::clock; } sl@0: # endif sl@0: sl@0: sl@0: namespace boost { sl@0: sl@0: // timer -------------------------------------------------------------------// sl@0: sl@0: // A timer object measures elapsed time. sl@0: sl@0: // It is recommended that implementations measure wall clock rather than CPU sl@0: // time since the intended use is performance measurement on systems where sl@0: // total elapsed time is more important than just process or CPU time. sl@0: sl@0: // Warnings: The maximum measurable elapsed time may well be only 596.5+ hours sl@0: // due to implementation limitations. The accuracy of timings depends on the sl@0: // accuracy of timing information provided by the underlying platform, and sl@0: // this varies a great deal from platform to platform. sl@0: sl@0: class timer sl@0: { sl@0: public: sl@0: timer() { _start_time = std::clock(); } // postcondition: elapsed()==0 sl@0: // timer( const timer& src ); // post: elapsed()==src.elapsed() sl@0: // ~timer(){} sl@0: // timer& operator=( const timer& src ); // post: elapsed()==src.elapsed() sl@0: void restart() { _start_time = std::clock(); } // post: elapsed()==0 sl@0: double elapsed() const // return elapsed time in seconds sl@0: { return double(std::clock() - _start_time) / CLK_TCK; } sl@0: sl@0: double elapsed_max() const // return estimated maximum value for elapsed() sl@0: // Portability warning: elapsed_max() may return too high a value on systems sl@0: // where std::clock_t overflows or resets at surprising values. sl@0: { sl@0: return (double((std::numeric_limits::max)()) sl@0: - double(_start_time)) / double(CLK_TCK); sl@0: } sl@0: sl@0: double elapsed_min() const // return minimum value for elapsed() sl@0: { return double(1)/double(CLK_TCK); } sl@0: sl@0: private: sl@0: std::clock_t _start_time; sl@0: }; // timer sl@0: sl@0: } // namespace boost sl@0: sl@0: #endif // BOOST_TIMER_HPP