aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Core/ExecutionState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Core/ExecutionState.cpp')
-rw-r--r--lib/Core/ExecutionState.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Core/ExecutionState.cpp b/lib/Core/ExecutionState.cpp
index 00e372e4..9ba163da 100644
--- a/lib/Core/ExecutionState.cpp
+++ b/lib/Core/ExecutionState.cpp
@@ -66,7 +66,6 @@ ExecutionState::ExecutionState(KFunction *kf) :
pc(kf->instructions),
prevPC(pc),
- queryCost(0.),
weight(1),
depth(0),
@@ -79,7 +78,7 @@ ExecutionState::ExecutionState(KFunction *kf) :
}
ExecutionState::ExecutionState(const std::vector<ref<Expr> > &assumptions)
- : constraints(assumptions), queryCost(0.), ptreeNode(0) {}
+ : constraints(assumptions), ptreeNode(0) {}
ExecutionState::~ExecutionState() {
for (unsigned int i=0; i<symbolics.size(); i++)