00001 //===-- SolverStats.h -------------------------------------------*- C++ -*-===// 00002 // 00003 // The KLEE Symbolic Virtual Machine 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef KLEE_SOLVERSTATS_H 00011 #define KLEE_SOLVERSTATS_H 00012 00013 #include "klee/Statistic.h" 00014 00015 namespace klee { 00016 namespace stats { 00017 00018 extern Statistic cexCacheTime; 00019 extern Statistic queries; 00020 extern Statistic queriesInvalid; 00021 extern Statistic queriesValid; 00022 extern Statistic queryCacheHits; 00023 extern Statistic queryCacheMisses; 00024 extern Statistic queryConstructTime; 00025 extern Statistic queryConstructs; 00026 extern Statistic queryCounterexamples; 00027 extern Statistic queryTime; 00028 00029 } 00030 } 00031 00032 #endif
1.5.8