mirror of https://github.com/BOINC/boinc.git
- client: comment out a debug msg
svn path=/trunk/boinc/; revision=22632
This commit is contained in:
parent
7d3d8adc73
commit
805a763e93
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue