27#if defined(_WIN32) || defined(_WIN64)
49#define TIMES_TICKS_PER_SEC CLK_TCK
50#elif defined(_SC_CLK_TCK)
51#define TIMES_TICKS_PER_SEC sysconf(_SC_CLK_TCK)
53#define TIMES_TICKS_PER_SEC HZ
55#define TIMES_TICKS_PER_SEC 60
63#if defined(_WIN32) || defined(_WIN64)
70 clock_t ret = times(&now);
73 now.tms_utime = now.tms_stime = ret = 0;
enum soplex::Timer::@19 status
status of the timer
virtual Real stop()
stop timer, return accounted user time.
virtual Real lastTime() const
clock_t uAccount
user time
virtual void start()
start timer, resume accounting user, system and real time.
virtual Real time() const
Real ticks2sec(clock_t ticks) const
convert ticks to secounds.
void updateTicks() const
get actual user ticks from the system.
static const long ticks_per_sec
ticks per secound, should be constant
Everything should be within this namespace.
Debugging, floating point type and parameter definitions.
#define TIMES_TICKS_PER_SEC