src/test/time_measure_test.cc
author alpar
Fri, 23 Jul 2004 17:13:23 +0000
changeset 737 2d867176d10e
parent 566 14355e502338
child 906 17f31d280385
permissions -rw-r--r--
Several changes in Kruskal alg.
- Input object interface was changed to an STL compatible one.
- template parameters of class KruskalPairVec has been simplified.
- (the most of) the names meet the naming conventions.
- a lot of (but still not enough) documentation has been added.
- class KruskalMapVec has been commented out.
     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;
    14   for(int i=0;i<100;i++) j+=2;
    15   std::cout << T << '\n';
    16   T.reset();
    17   for(int i=0;i<100;i++) j+=2;
    18   std::cout << T << '\n';
    19   
    20   return 0;
    21 }