about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2020-11-05 23:23:50 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2021-05-04 14:58:19 +0100
commit78026968b7ee1abd97f39227ab7494a898c0d287 (patch)
treefa193ba3724140517d965c89fc6bc9ac92b59533 /include
parent95f7f447432807efd70c8abac598d0d88ba1e9b1 (diff)
downloadklee-78026968b7ee1abd97f39227ab7494a898c0d287.tar.gz
differentiate between partial and completed paths in summary and fix paths stats when not dumping states
Diffstat (limited to 'include')
-rw-r--r--include/klee/Core/Interpreter.h3
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,