mirror of https://github.com/BOINC/boinc.git
30 lines
712 B
PHP
30 lines
712 B
PHP
<?php
|
|
|
|
define("CREDIT_HALF_LIFE", 86400*7);
|
|
|
|
// update a credit average.
|
|
// this must match the function in lib/util.C
|
|
|
|
function update_average($now, $work_start_time, $work, &$avg, &$avg_time) {
|
|
if ($avg_time) {
|
|
$diff = $now - $avg_time;
|
|
if ($diff <0) $diff = 0;
|
|
$diff_days = $diff/86400;
|
|
$weight = exp(-$diff*M_LN2/CREDIT_HALF_LIFE);
|
|
$avg *= $weight;
|
|
|
|
if ((1.0-$weight)>0.000001) {
|
|
$avg += (1.0-$weight)*($work/$diff_days);
|
|
}
|
|
else {
|
|
$avg += M_LN2*$work*86400/CREDIT_HALF_LIFE;
|
|
}
|
|
} else if ($work) {
|
|
$dd = ($now - $work_start_time)/86400;
|
|
$avg = $work/$dd;
|
|
}
|
|
$avg_time = $now;
|
|
}
|
|
|
|
?>
|