diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Core/Interpreter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/klee/Core/Interpreter.h b/include/klee/Core/Interpreter.h index 541881a9..f14e3d88 100644 --- a/include/klee/Core/Interpreter.h +++ b/include/klee/Core/Interpreter.h @@ -40,7 +40,8 @@ public: virtual std::string getOutputFilename(const std::string &filename) = 0; virtual std::unique_ptr<llvm::raw_fd_ostream> openOutputFile(const std::string &filename) = 0; - virtual void incPathsExplored() = 0; + virtual void incPathsCompleted() = 0; + virtual void incPathsExplored(std::uint32_t num = 1) = 0; virtual void processTestCase(const ExecutionState &state, const char *err, |