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.
alpar@545
     1
#include <hugo/time_measure.h>
alpar@545
     2
alpar@545
     3
///\file \brief Test cases for time_measure.h
alpar@545
     4
///
alpar@545
     5
///\todo To be extended
alpar@545
     6
alpar@545
     7
alpar@545
     8
using namespace hugo;
alpar@545
     9
alpar@545
    10
int main()
alpar@545
    11
{
alpar@545
    12
  int j=0;
alpar@545
    13
  Timer T;
alpar@567
    14
  for(int i=0;i<100;i++) j+=2;
alpar@545
    15
  std::cout << T << '\n';
alpar@545
    16
  T.reset();
alpar@567
    17
  for(int i=0;i<100;i++) j+=2;
alpar@545
    18
  std::cout << T << '\n';
alpar@567
    19
  
alpar@566
    20
  return 0;
alpar@545
    21
}