source:
lemon-0.x/src/test/time_measure_test.cc
@
882:46974f296c4a
| Last change on this file since 882:46974f296c4a was 567:efaa79ee8d14, checked in by , 22 years ago | |
|---|---|
| File size: 310 bytes | |
| Rev | Line | |
|---|---|---|
| [545] | 1 | #include <hugo/time_measure.h> |
| 2 | ||
| 3 | ///\file \brief Test cases for time_measure.h | |
| 4 | /// | |
| 5 | ///\todo To be extended | |
| 6 | ||
| 7 | ||
| 8 | using namespace hugo; | |
| 9 | ||
| 10 | int main() | |
| 11 | { | |
| 12 | int j=0; | |
| 13 | Timer T; | |
| [567] | 14 | for(int i=0;i<100;i++) j+=2; |
| [545] | 15 | std::cout << T << '\n'; |
| 16 | T.reset(); | |
| [567] | 17 | for(int i=0;i<100;i++) j+=2; |
| [545] | 18 | std::cout << T << '\n'; |
| [567] | 19 | |
| [566] | 20 | return 0; |
| [545] | 21 | } |
Note: See TracBrowser
for help on using the repository browser.

