COIN-OR::LEMON - Graph Library

Changeset 2543:a0443c411220 in lemon-0.x for lemon


Ignore:
Timestamp:
12/19/07 10:16:22 (16 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3420
Message:

Change the local variables lower case

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/time_measure.h

    r2408 r2543  
    242242  ///   ...
    243243  ///
    244   ///   Timer T;
     244  ///   Timer t;
    245245  ///   doSomething();
    246   ///   std::cout << T << '\n';
    247   ///   T.restart();
     246  ///   std::cout << t << '\n';
     247  ///   t.restart();
    248248  ///   doSomethingElse();
    249   ///   std::cout << T << '\n';
     249  ///   std::cout << t << '\n';
    250250  ///
    251251  ///   ...
     
    262262  ///granularity.
    263263  ///Therefore this tool is not appropriate to measure very short times.
    264   ///Also, if you start and stop the timer very frequently, it could lead
     264  ///Also, if you start and stop the timer very frequently, it could lead to
    265265  ///distorted results.
    266266  ///
     
    349349    ///Halt (i.e stop immediately) the time counters
    350350
    351     ///This function stops immediately the time counters.
     351    ///This function stops immediately the time counters, i.e. <tt>t.stop()</tt>
     352    ///is a faster
     353    ///equivalent of the following.
     354    ///\code
     355    ///  while(t.running()) t.stop()
     356    ///\endcode
     357    ///
    352358    ///
    353359    ///\sa stop()
     
    423429    ///the ellapsed time like this.
    424430    ///\code
    425     ///  Timer T;
     431    ///  Timer t;
    426432    ///  doSomething();
    427     ///  std::cout << T << '\n';
     433    ///  std::cout << t << '\n';
    428434    ///\endcode
    429435    operator TimeStamp () const
     
    445451  ///  void myAlg(ListGraph &g,int n)
    446452  ///  {
    447   ///    TimeReport TR("Running time of myAlg: ");
     453  ///    TimeReport tr("Running time of myAlg: ");
    448454  ///    ... //Here comes the algorithm
    449455  ///  }
Note: See TracChangeset for help on using the changeset viewer.