diff options
author | Dan Liew <delcypher@gmail.com> | 2016-04-08 14:36:06 +0100 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2016-04-08 14:36:06 +0100 |
commit | 386d972fbbb6064eff394c687d427d4385f95716 (patch) | |
tree | 44fc2a65d5ab8fcc706f8eeecf5f86837a839ec3 /lib/Core/Executor.h | |
parent | 6609a03e68bf551f433ddd0fd8cf64a8683ee2ee (diff) | |
parent | 5fbbd8a6ea51c81419b29ccfd133b4a9789fd638 (diff) | |
download | klee-386d972fbbb6064eff394c687d427d4385f95716.tar.gz |
Merge pull request #368 from delcypher/refactor_klee_out_file_to_ktest
Refactor use of the name "outFile" to "KTest"
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r-- | lib/Core/Executor.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index 8bfa278a..1997bad2 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -150,10 +150,10 @@ private: /// When non-null the bindings that will be used for calls to /// klee_make_symbolic in order replay. - const struct KTest *replayOut; + const struct KTest *replayKTest; /// When non-null a list of branch decisions to be used for replay. const std::vector<bool> *replayPath; - /// The index into the current \ref replayOut or \ref replayPath + /// The index into the current \ref replayKTest or \ref replayPath /// object. unsigned replayPosition; @@ -417,16 +417,16 @@ public: } virtual void setSymbolicPathWriter(TreeStreamWriter *tsw) { symPathWriter = tsw; - } + } - virtual void setReplayOut(const struct KTest *out) { + virtual void setReplayKTest(const struct KTest *out) { assert(!replayPath && "cannot replay both buffer and path"); - replayOut = out; + replayKTest = out; replayPosition = 0; } virtual void setReplayPath(const std::vector<bool> *path) { - assert(!replayOut && "cannot replay both buffer and path"); + assert(!replayKTest && "cannot replay both buffer and path"); replayPath = path; replayPosition = 0; } |