libStatGen Software
1
|
Public Member Functions | |
void | start () |
void | end () |
double | interval () |
Return time interval between start() and end() |
Definition at line 32 of file Performance.h.
double Timing::interval | ( | ) | [inline] |
Return time interval between start() and end()
Definition at line 60 of file Performance.h.
{
return (endInterval.tv_sec + (endInterval.tv_usec/1000000.0)) -
(startInterval.tv_sec + (startInterval.tv_usec/1000000.0));
}