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
61void UserTimer::updateTicks()
const
63#if defined(_WIN32) || defined(_WIN64)
70 clock_t ret = times(&now);
73 now.tms_utime = now.tms_stime = ret = 0;
81void UserTimer::start()
126Real UserTimer::lastTime()
const
enum soplex::Timer::@200240122345157107017012266224277217351102004172 status
status of the timer
clock_t uAccount
user time
Real ticks2sec(clock_t ticks) const
convert ticks to secounds.
void updateTicks() const
get actual user ticks from the system.
Everything should be within this namespace.
Debugging, floating point type and parameter definitions.
#define TIMES_TICKS_PER_SEC