about summary refs log tree commit diff homepage
path: root/lib/Core/Searcher.h
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2014-04-24 14:08:22 +0100
committerDan Liew <daniel.liew@imperial.ac.uk>2014-04-24 14:08:22 +0100
commit9f183220d042e78df8ff8540a61be982cab3aec9 (patch)
tree3f2dbd0fa32712b5827ea715e1c2a1425209d1a5 /lib/Core/Searcher.h
parent0a420e03da2c610be51d217c60c65381cb482b95 (diff)
downloadklee-9f183220d042e78df8ff8540a61be982cab3aec9.tar.gz
Removed ununsed Executor field in WeightedRandomSearcher to silence
clang warning.
Diffstat (limited to 'lib/Core/Searcher.h')
-rw-r--r--lib/Core/Searcher.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Core/Searcher.h b/lib/Core/Searcher.h
index 79c233c4..3944d4b4 100644
--- a/lib/Core/Searcher.h
+++ b/lib/Core/Searcher.h
@@ -135,7 +135,6 @@ namespace klee {
     };
 
   private:
-    Executor &executor;
     DiscretePDF<ExecutionState*> *states;
     WeightType type;
     bool updateWeights;
@@ -143,7 +142,7 @@ namespace klee {
     double getWeight(ExecutionState*);
 
   public:
-    WeightedRandomSearcher(Executor &executor, WeightType type);
+    WeightedRandomSearcher(WeightType type);
     ~WeightedRandomSearcher();
 
     ExecutionState &selectState();