lemon/time_measure.h
changeset 528 097d7c4634ea
parent 511 879c55700cd4
child 595 94387da47f79
child 1078 c59bdcc8e33e
equal deleted inserted replaced
13:13ebd5cc32ad 14:b1b2707c8120
   200     }
   200     }
   201     ///Gives back the real time
   201     ///Gives back the real time
   202     double realTime() const {return rtime;}
   202     double realTime() const {return rtime;}
   203   };
   203   };
   204 
   204 
   205   TimeStamp operator*(double b,const TimeStamp &t)
   205   inline TimeStamp operator*(double b,const TimeStamp &t)
   206   {
   206   {
   207     return t*b;
   207     return t*b;
   208   }
   208   }
   209 
   209 
   210   ///Prints the time counters
   210   ///Prints the time counters