diff options
author | Lei Zhang <antiAgainst@gmail.com> | 2013-07-23 23:32:30 -0700 |
---|---|---|
committer | Lei Zhang <antiAgainst@gmail.com> | 2013-07-23 23:32:30 -0700 |
commit | 939d6874d114f5a39396f28aeb6ebc17a0dc652b (patch) | |
tree | 15d24a34eb4a5d9c171ae8c20e4e4fe43961d26b /lib/Core/Searcher.h | |
parent | 7d76de96751796cca076e021575fafd459eef6fb (diff) | |
download | klee-939d6874d114f5a39396f28aeb6ebc17a0dc652b.tar.gz |
BFS searcher.
Diffstat (limited to 'lib/Core/Searcher.h')
-rw-r--r-- | lib/Core/Searcher.h | 17 |
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; |