diff options
Diffstat (limited to 'lib/Core/ExecutionState.cpp')
-rw-r--r-- | lib/Core/ExecutionState.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Core/ExecutionState.cpp b/lib/Core/ExecutionState.cpp index 15003b0e..60715b33 100644 --- a/lib/Core/ExecutionState.cpp +++ b/lib/Core/ExecutionState.cpp @@ -69,7 +69,6 @@ ExecutionState::ExecutionState(KFunction *kf) : pc(kf->instructions), prevPC(pc), - weight(1), depth(0), instsSinceCovNew(0), @@ -111,7 +110,6 @@ ExecutionState::ExecutionState(const ExecutionState& state): constraints(state.constraints), queryCost(state.queryCost), - weight(state.weight), depth(state.depth), pathOS(state.pathOS), @@ -141,9 +139,6 @@ ExecutionState *ExecutionState::branch() { falseState->coveredNew = false; falseState->coveredLines.clear(); - weight *= .5; - falseState->weight -= weight; - return falseState; } |