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.cpp | |
parent | 7d76de96751796cca076e021575fafd459eef6fb (diff) | |
download | klee-939d6874d114f5a39396f28aeb6ebc17a0dc652b.tar.gz |
BFS searcher.
Diffstat (limited to 'lib/Core/Searcher.cpp')
-rw-r--r-- | lib/Core/Searcher.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/Core/Searcher.cpp b/lib/Core/Searcher.cpp index d08cd1b1..778ef0ef 100644 --- a/lib/Core/Searcher.cpp +++ b/lib/Core/Searcher.cpp @@ -88,6 +88,40 @@ void DFSSearcher::update(ExecutionState *current, /// +ExecutionState &BFSSearcher::selectState() { + return *states.front(); +} + +void BFSSearcher::update(ExecutionState *current, + const std::set<ExecutionState*> &addedStates, + const std::set<ExecutionState*> &removedStates) { + states.insert(states.end(), + addedStates.begin(), + addedStates.end()); + for (std::set<ExecutionState*>::const_iterator it = removedStates.begin(), + ie = removedStates.end(); it != ie; ++it) { + ExecutionState *es = *it; + if (es == states.front()) { + states.pop_front(); + } else { + bool ok = false; + + for (std::deque<ExecutionState*>::iterator it = states.begin(), + ie = states.end(); it != ie; ++it) { + if (es==*it) { + states.erase(it); + ok = true; + break; + } + } + + assert(ok && "invalid state removed"); + } + } +} + +/// + ExecutionState &RandomSearcher::selectState() { return *states[theRNG.getInt32()%states.size()]; } |