klee
TimerStatIncrementer.h
Go to the documentation of this file.
1//===-- TimerStatIncrementer.h ----------------------------------*- C++ -*-===//
2//
3// The KLEE Symbolic Virtual Machine
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef KLEE_TIMERSTATINCREMENTER_H
11#define KLEE_TIMERSTATINCREMENTER_H
12
14#include "klee/Support/Timer.h"
15
16namespace klee {
17
22 private:
25
26 public:
29 // record microseconds
31 }
32
33 time::Span delta() const { return timer.delta(); }
34 };
35}
36
37#endif /* KLEE_TIMERSTATINCREMENTER_H */
TimerStatIncrementer(Statistic &statistic)
time::Span delta() const
Return the delta since the timer was created.
Definition: Timer.cpp:22
Definition: main.cpp:291
std::uint64_t toMicroseconds() const
Definition: Time.cpp:159