From fdb39c9613c4e3b7fad9b7cc8e554818a4804182 Mon Sep 17 00:00:00 2001 From: hellwig Date: Wed, 13 Feb 2013 13:16:18 +0000 Subject: [PATCH] correction of commit 2079 git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2080 8c4709b5-6ec9-48aa-a5cd-a96041d1645a --- src/core/efw/JobClient.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/efw/JobClient.cc b/src/core/efw/JobClient.cc index 100e2d3e..45a0a387 100644 --- a/src/core/efw/JobClient.cc +++ b/src/core/efw/JobClient.cc @@ -185,7 +185,6 @@ bool JobClient::sendResult(ExperimentData& result) //Stop time measurement and calculate new throughput m_job_runtime.stopTimer(); m_job_throughput = 0.5 * m_job_throughput + 0.5*(CLIENT_JOB_REQUEST_SEC/((double)m_job_runtime/m_results.size())); - m_job_throughput = CLIENT_JOB_REQUEST_SEC/((double)m_job_runtime/m_results.size()); if (m_job_throughput > CLIENT_JOB_LIMIT) { m_job_throughput = CLIENT_JOB_LIMIT;