- client: comment out a debug msg

svn path=/trunk/boinc/; revision=22632
This commit is contained in:
David Anderson 2010-11-05 19:17:07 +00:00
parent 7d3d8adc73
commit 805a763e93
2 changed files with 8 additions and 2 deletions

View File

@ -7871,3 +7871,9 @@ David 05 Nov 2010
validator.cpp validator.cpp
py/Boinc/ py/Boinc/
setup_project.py setup_project.py
David 05 Nov 2010
- client: comment out a debug msg
client/
work_fetch.cpp

View File

@ -1335,8 +1335,8 @@ double ACTIVE_TASK::est_dur(bool for_work_fetch) {
double wu_weight = fraction_left * fraction_left * fraction_left; double wu_weight = fraction_left * fraction_left * fraction_left;
double fd_weight = 1 - wu_weight; double fd_weight = 1 - wu_weight;
double x = fd_weight*frac_est + wu_weight*wu_est; double x = fd_weight*frac_est + wu_weight*wu_est;
#if 1 #if 0
if (log_flags.rr_simulation) { if (for_work_fetch && log_flags.rr_simulation) {
msg_printf(result->project, MSG_INFO, msg_printf(result->project, MSG_INFO,
"[rr_sim] %s dur: %.2f = %.3f*%.2f + %.3f*%.2f", "[rr_sim] %s dur: %.2f = %.3f*%.2f + %.3f*%.2f",
result->name, x, fd_weight, frac_est, wu_weight, wu_est result->name, x, fd_weight, frac_est, wu_weight, wu_est