correction of commit 2079

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2080 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hellwig
2013-02-13 13:16:18 +00:00
parent a2830fa140
commit fdb39c9613

View File

@ -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;