mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
tabs
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
7ef1e8a3de
commit
3222ecd992
|
@ -90,7 +90,7 @@ public:
|
|||
~stopwatch() {}
|
||||
|
||||
void reset() {
|
||||
m_time = 0ull;
|
||||
m_time = 0ull;
|
||||
}
|
||||
|
||||
void start() {
|
||||
|
@ -101,7 +101,7 @@ public:
|
|||
}
|
||||
|
||||
void stop() {
|
||||
if (m_running) {
|
||||
if (m_running) {
|
||||
mach_timespec_t _stop;
|
||||
clock_get_time(m_host_clock, &_stop);
|
||||
m_time += (_stop.tv_sec - m_start.tv_sec) * 1000000000ull;
|
||||
|
@ -120,7 +120,7 @@ public:
|
|||
}
|
||||
|
||||
double get_current_seconds() const {
|
||||
return get_seconds();
|
||||
return get_seconds();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -141,7 +141,7 @@ public:
|
|||
~stopwatch() {}
|
||||
|
||||
void reset() {
|
||||
m_time = 0ull;
|
||||
m_time = 0ull;
|
||||
}
|
||||
|
||||
void start() {
|
||||
|
@ -152,7 +152,7 @@ public:
|
|||
}
|
||||
|
||||
void stop() {
|
||||
if (m_running) {
|
||||
if (m_running) {
|
||||
struct timespec _stop;
|
||||
clock_gettime(CLOCK_THREAD_CPUTIME_ID, &_stop);
|
||||
m_time += (_stop.tv_sec - m_start.tv_sec) * 1000000000ull;
|
||||
|
@ -171,7 +171,7 @@ public:
|
|||
}
|
||||
|
||||
double get_current_seconds() const {
|
||||
return get_seconds();
|
||||
return get_seconds();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue