blob: 56bdf999726b7c7376189ad5034b87da12cf8d16 (
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
|
//===-- 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;
#ifdef DEBUG
extern Statistic arrayHashTime;
#endif
}
}
#endif
|