diff options
author | Frank Busse <bb0xfb@gmail.com> | 2020-10-07 17:46:13 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-10-12 11:31:05 +0100 |
commit | b196bd4a9cfc4ae9d582fc3d17c15094287bb36f (patch) | |
tree | 846250ca8f2f983d0caf6cae7f0db269f92a33f9 /lib/Core/Searcher.cpp | |
parent | 8cb0d545138cbb876318ed6d578b2b6a6a92b81a (diff) | |
download | klee-b196bd4a9cfc4ae9d582fc3d17c15094287bb36f.tar.gz |
Searcher: remove addState/removeState functions
Diffstat (limited to 'lib/Core/Searcher.cpp')
-rw-r--r-- | lib/Core/Searcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Searcher.cpp b/lib/Core/Searcher.cpp index e2f11a87..f8fd2aea 100644 --- a/lib/Core/Searcher.cpp +++ b/lib/Core/Searcher.cpp @@ -420,7 +420,7 @@ void IterativeDeepeningTimeSearcher::update( removedStates.end() && elapsed > time) { pausedStates.insert(current); - baseSearcher->removeState(current); + baseSearcher->update(nullptr, {}, {current}); } // no states left in underlying searcher: fill with paused states |