src/test/time_measure_test.cc
author marci
Tue, 17 Aug 2004 13:20:46 +0000
changeset 764 615aca7091d2
parent 566 14355e502338
child 906 17f31d280385
permissions -rw-r--r--
An experimental LPSolverWrapper class which uses glpk. For a short
demo, max flow problems are solved with it. This demo does not
demonstrates, but the main aims of this class are row and column
generation capabilities, i.e. to be a core for easily
implementable branch-and-cut a column generetion algorithms.
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
}