From 573a580e3aca939f4b64aaabe6b24ec681466f82 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 17 Feb 2010 18:34:35 +0000 Subject: [PATCH] Add a small cost for judge teams with no experience, try to avoid that. --- admin/judges_sa.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/admin/judges_sa.php b/admin/judges_sa.php index 7421c86d..bd00b3bf 100644 --- a/admin/judges_sa.php +++ b/admin/judges_sa.php @@ -104,6 +104,7 @@ function judges_cost_function($annealer, $bucket_id, $ids) $cost = 0; $have_chair = false; $have_div2 = false; + $years_experience = 0; if($bucket_id == 0) { /* This is the placeholder for all judges, there's a slight @@ -165,6 +166,10 @@ function judges_cost_function($annealer, $bucket_id, $ids) /* If divisional round2 is enabled, make sure there is a judge * on the team for round2 */ if($j['available_for_divisional2'] == true) $have_div2 = true; + + /* Add up the years experience */ + $years_experience += $j['years_school'] + $j['years_regional'] + $j['years_national']; + } /* Huge penalty for a team without a willing chair, but only if the min judges per team >1 */ if(!$have_chair && $config['min_judges_per_team']>1) @@ -175,6 +180,11 @@ function judges_cost_function($annealer, $bucket_id, $ids) if($have_div2 == false) $cost += 40; } + + /* Small penalty for a jteam with no experience whatsoever */ + if($years_experience == 0) { + $cost += 2; + } // TRACE("Team $bucket_id, cost is $cost\n");