From 17221cb133ae4a0a332cb73368ad5779a5622b3a Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Sat, 21 Aug 2004 17:35:02 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4090 --- sched/handle_request.C | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sched/handle_request.C b/sched/handle_request.C index ca61f1d733..7c094ec5da 100644 --- a/sched/handle_request.C +++ b/sched/handle_request.C @@ -201,9 +201,7 @@ make_new_host: // Could also include terms for RAM size, network speed etc. // static void compute_credit_rating(HOST& host, SCHEDULER_REQUEST& sreq) { - double cobblestone_factor = 300; - if (sreq.core_client_major_version > 3) cobblestone_factor = 100; - if (sreq.core_client_minor_version > 5) cobblestone_factor = 100; + double cobblestone_factor = 100; host.credit_per_cpu_sec = (fabs(host.p_fpops)/1e9 + fabs(host.p_iops)/1e9) * cobblestone_factor / (2 * SECONDS_PER_DAY);