blob: a38c9826525f22dcafe368fc5857fff20658e5ff (
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
33
34
35
36
37
38
|
//===-- 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 queryCexCacheHits;
extern Statistic queryCexCacheMisses;
extern Statistic queryConstructTime;
extern Statistic queryConstructs;
extern Statistic queryCounterexamples;
extern Statistic queryTime;
#ifdef DEBUG
extern Statistic arrayHashTime;
#endif
}
}
#endif
|