diff options
| author | Martin Nowack <m.nowack@imperial.ac.uk> | 2019-04-01 14:11:23 +0100 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-07-01 15:52:40 +0100 |
| commit | fdfc73bb3217c3a9527e09075b52aecdf19de666 (patch) | |
| tree | 617ec2bcdb26627d123daf27f2fbabf0add70a25 /lib/Core/ExecutionState.h | |
| parent | 8a0f1af7500e10dadd97300f242424917d2e9902 (diff) | |
| download | klee-fdfc73bb3217c3a9527e09075b52aecdf19de666.tar.gz | |
Remove state contructor with constraints
This constructor has been a hack and was wrongly used, use ConstraintManager instead. Allow copy-constructing states only via `ExecutionState::branch()` call.
Diffstat (limited to 'lib/Core/ExecutionState.h')
| -rw-r--r-- | lib/Core/ExecutionState.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/Core/ExecutionState.h b/lib/Core/ExecutionState.h index 03cad916..7be69ea7 100644 --- a/lib/Core/ExecutionState.h +++ b/lib/Core/ExecutionState.h @@ -65,6 +65,14 @@ struct StackFrame { /// @brief ExecutionState representing a path under exploration class ExecutionState { +#ifdef KLEE_UNITTEST +public: +#else +private: +#endif + // copy ctor + ExecutionState(const ExecutionState &state); + public: using stack_ty = std::vector<StackFrame>; @@ -152,11 +160,6 @@ public: #endif // only to create the initial state explicit ExecutionState(KFunction *kf); - // XXX total hack, just used to make a state so solver can - // use on structure - explicit ExecutionState(const std::vector<ref<Expr>> &assumptions); - // copy ctor - ExecutionState(const ExecutionState &state); // no copy assignment, use copy constructor ExecutionState &operator=(const ExecutionState &) = delete; // no move ctor |
