libStatGen Software  1
Timing Class Reference

Public Member Functions

void start ()
 
void end ()
 
double interval ()
 Return time interval between start() and end() More...
 

Detailed Description

Definition at line 32 of file Performance.h.

Member Function Documentation

◆ interval()

double Timing::interval ( )
inline

Return time interval between start() and end()

Returns
elapsed time in seconds

Definition at line 60 of file Performance.h.

61 {
62  return (endInterval.tv_sec + (endInterval.tv_usec/1000000.0)) -
63  (startInterval.tv_sec + (startInterval.tv_usec/1000000.0));
64 }

The documentation for this class was generated from the following file: