mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
41 lines
498 B
C++
41 lines
498 B
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
timer.cpp
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2009-01-06.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#include"util.h"
|
|
#include"memory_manager.h"
|
|
#include"stopwatch.h"
|
|
#include"timer.h"
|
|
|
|
timer::timer(){
|
|
m_watch = alloc(stopwatch);
|
|
start();
|
|
}
|
|
|
|
timer::~timer() {
|
|
dealloc(m_watch);
|
|
}
|
|
|
|
void timer::start() {
|
|
m_watch->start();
|
|
}
|
|
|
|
double timer::get_seconds() {
|
|
return m_watch->get_current_seconds();
|
|
}
|
|
|