blob: 6fee769981da50fb9116ddc6159ac9c3db3b1c7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//===-- SolverStats.h -------------------------------------------*- C++ -*-===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef KLEE_SOLVERSTATS_H
#define KLEE_SOLVERSTATS_H
#include "klee/Statistic.h"
namespace klee {
namespace stats {
extern Statistic cexCacheTime;
extern Statistic queries;
extern Statistic queriesInvalid;
extern Statistic queriesValid;
extern Statistic queryCacheHits;
extern Statistic queryCacheMisses;
extern Statistic queryConstructTime;
extern Statistic queryConstructs;
extern Statistic queryCounterexamples;
extern Statistic queryTime;
}
}
#endif
|