$round0_div_jteam_count Round 1 Divisional Judging Teams have enough judges to judge each project {$config['div_times_each_project_judged']} times"); } else { $notices['Judging Teams']['r1div_judges'] = array("OK All $round0_div_jteam_count Round 1 Divisional Judging Teams have {$config['div_times_each_project_judged']} judges"); } $num_timeslots = count($timeslots); if($num_timeslots > 1) { $notices['Judging Teams']['r2div_judges'] = array("OK All $round1_div_jteam_count Round 2 Divisional (Cusp) Judging Teams have {$config['judge_cusp_max_team']} judges"); } $notices['Judging Teams']['bad_projects'] = array("OK Projects assigned to all Judging Teams are accepted and exist"); $notices['Judging Teams']['sa_judges'] = array("OK All Special Award Judging Teams have (at most) {$config['judge_sa_max_projects']} projects per judge"); foreach($jteams as &$jteam) { if($config['judge_div_shuffle']) { $judges_required = (int)((count($jteam['project_ids']) * $config['div_times_each_project_judged']) / $num_timeslots) + 1; } else { $judges_required = $config['div_times_each_project_judged']; } if($jteam['round'] == 0 && $awards[$jteam['award_id']]['type'] == 'divisional') { $c = count($jteam['user_ids']); /* round1 divisional */ if($c < $config['div_times_each_project_judged']) { $notices['Judging Teams']['r1div_judges'][] = "NO Round 1 Divisional Judging Team {$jteam['name']} has $c judges, but needs $judges_required so that each project can be judged {$config['div_times_each_project_judged']} times"; } } if($jteam['round'] == 1 && $awards[$jteam['award_id']]['type'] == 'divisional') { $c = count($jteam['user_ids']); /* round1 divisional */ if($c < $config['judge_cusp_max_team']) { $notices['Judging Teams']['r2div_judges'][] = "NO Round 2 Divisional (Cusp) Judging Team {$jteam['name']} has $c judges. Not {$config['judge_cusp_max_team']}"; } } /* Make sure all projects exist */ foreach($jteam['project_ids'] as $pid) { if(!array_key_exists($pid, $projects)) { $notices['Judging Teams']['bad_projects'][] = "ER Judging {$jteam['name']} is assigned (pid:$pid), but it doesn't exist. Project deleted or not accepted?"; } } if($awards[$jteam['award_id']]['type'] == 'special') { $c = count($jteam['user_ids']); $p = count($jteam['project_ids']); if($c * (int)$config['judge_sa_max_projects'] < $p) { $notices['Judging Teams']['sa_judges'][] = "NO Special Award Judging Team {$jteam['name']} has $c judges and $p projects. More than {$config['judge_sa_max_projects']} projects per judge"; } } } $notices['Awards'] = array(); $notices['Awards']['all_sa'] = array("OK All Special Awards Marked as 'Schedule Judges' have a Judging Team"); foreach($awards as &$award) { if($award['type'] == 'special' && $award['schedule_judges'] == 1) { /* Find the judging team */ $found = false; foreach($jteams as &$jteam) { if($jteam['award_id'] == $award['id']) { $found = true; break; } } if($found == false) { $notices['Awards']['all_sa'][] = "ER Award {$award['name']} is marked 'Schedule Judges', but has no Judging Team"; } } } $num_projects = count($projects); $notices['Projects'] = array(); $notices['Projects']['r1assigned'] = array("OK All $num_projects projects have a Round 1 Divisional judging team"); $notices['Projects']['unavailable'] = array("OK No Projects have restricted timeslot availability requirements"); $notices['Projects']['disqualified_from_awards'] = array("OK No Projects have been disqualifed from winning awards"); foreach($projects as $pid=>&$p) { /* Check that each project is judged in round 1 */ $found = false; foreach($jteams as &$jteam) { if($jteam['round'] == 0 && $awards[$jteam['award_id']]['type'] == 'divisional') { if(in_array($pid, $jteam['project_ids'])) { $found = true; break; } } } if(!$found) { $notices['Projects']['r1assigned'][] = "ER Project (id:$pid) \"{$p['number']}\" is not assigned to a Round 1 Judging Team."; } /* Info notices for timeslot execptions */ if(count($p['unavailable_timeslots'])) { $notices['Projects']['unavailable'][] = "IN Project (id:$pid) \"{$p['number']}\" has been marked as unavailabled in the following timeslots: ".join(',', $p['unavailable_timeslots']); } if($p['disqualified_from_awards']) { $notices['Projects']['disqualified_from_awards'][] = "IN Project (id:$pid) \"{$p['number']}\" has been marked as Disqualified From Awards"; } } ?>