about summary refs log tree commit diff homepage
path: root/lib/Core/Searcher.h
diff options
context:
space:
mode:
authorLei Zhang <antiAgainst@gmail.com>2013-07-23 23:32:30 -0700
committerLei Zhang <antiAgainst@gmail.com>2013-07-23 23:32:30 -0700
commit939d6874d114f5a39396f28aeb6ebc17a0dc652b (patch)
tree15d24a34eb4a5d9c171ae8c20e4e4fe43961d26b /lib/Core/Searcher.h
parent7d76de96751796cca076e021575fafd459eef6fb (diff)
downloadklee-939d6874d114f5a39396f28aeb6ebc17a0dc652b.tar.gz
BFS searcher.
Diffstat (limited to 'lib/Core/Searcher.h')
-rw-r--r--lib/Core/Searcher.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/Core/Searcher.h b/lib/Core/Searcher.h
index 58772bbb..79c233c4 100644
--- a/lib/Core/Searcher.h
+++ b/lib/Core/Searcher.h
@@ -68,7 +68,8 @@ namespace klee {
     }
 
     enum CoreSearchType {
-      DFS,                
+      DFS,
+      BFS,
       RandomState,
       RandomPath,
       NURS_CovNew,
@@ -94,6 +95,20 @@ namespace klee {
     }
   };
 
+  class BFSSearcher : public Searcher {
+    std::deque<ExecutionState*> states;
+
+  public:
+    ExecutionState &selectState();
+    void update(ExecutionState *current,
+                const std::set<ExecutionState*> &addedStates,
+                const std::set<ExecutionState*> &removedStates);
+    bool empty() { return states.empty(); }
+    void printName(std::ostream &os) {
+      os << "BFSSearcher\n";
+    }
+  };
+
   class RandomSearcher : public Searcher {
     std::vector<ExecutionState*> states;