diff options
author | Dan Liew <delcypher@gmail.com> | 2015-12-23 11:31:57 +0000 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2015-12-23 11:31:57 +0000 |
commit | 55944ebb2f05e4954a40dcf95af362e7a550a2f4 (patch) | |
tree | 902faade063168054f2a6e5ff5ef998455946ec9 /lib/Solver/SolverStats.h | |
parent | d348aee430c8308a29d5edadd4c38e7fee1abadc (diff) | |
parent | 0dbb147725e61ccb491039100d170357567c2b46 (diff) | |
download | klee-55944ebb2f05e4954a40dcf95af362e7a550a2f4.tar.gz |
Merge pull request #319 from delcypher/fix_inc_array_hash_expr
Fix duplication of klee::ArrayHashFn
Diffstat (limited to 'lib/Solver/SolverStats.h')
-rw-r--r-- | lib/Solver/SolverStats.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/Solver/SolverStats.h b/lib/Solver/SolverStats.h deleted file mode 100644 index a38c9826..00000000 --- a/lib/Solver/SolverStats.h +++ /dev/null @@ -1,38 +0,0 @@ -//===-- 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 |