src/test/time_measure_test.cc
author deba
Thu, 02 Sep 2004 10:07:30 +0000
changeset 782 df2e45e09652
parent 566 14355e502338
child 906 17f31d280385
permissions -rw-r--r--
--This line, and those below, will be ignored--

A hugo/sym_map_factory.h
M hugo/list_graph.h
A hugo/array_map_factory.h
A hugo/map_registry.h
M hugo/smart_graph.h
A hugo/map_defines.h
A hugo/extended_pair.h
M hugo/full_graph.h
A hugo/vector_map_factory.h
     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 }