]>
Commit | Line | Data |
---|---|---|
0005d3ad MG |
1 | =encoding utf-8 |
2 | ||
3 | =head1 NAME | |
4 | ||
5 | Gruntmaster::Daemon::Judge - Modules for judging jobs | |
6 | ||
7 | =head1 SYNOPSIS | |
8 | ||
9 | use Gruntmaster::Daemon::Runner::Foo; | |
10 | my $verdict = Gruntmaster::Daemon::Runner::Foo::judge(@results); | |
11 | ||
12 | =head1 DESCRIPTION | |
13 | ||
14 | A judge is a module that takes a list of verdicts and returns a single, combined verdict. | |
15 | ||
16 | There are two judges in this distribution: | |
17 | ||
18 | =over | |
19 | ||
20 | =item L<Gruntmaster::Daemon::Judge::Absolute> - All-or-nothing ACM-style judge | |
21 | ||
22 | =item L<Gruntmaster::Daemon::Judge::Points> - 0 to 100 points IOI-style judge | |
23 | ||
24 | =back | |
25 | ||
26 | =head1 AUTHOR | |
27 | ||
28 | Marius Gavrilescu E<lt>marius@ieval.roE<gt> | |
29 | ||
30 | =head1 COPYRIGHT AND LICENSE | |
31 | ||
32 | Copyright (C) 2014 by Marius Gavrilescu | |
33 | ||
34 | This library is free software: you can redistribute it and/or modify | |
35 | it under the terms of the GNU Affero General Public License as published by | |
36 | the Free Software Foundation, either version 3 of the License, or | |
37 | (at your option) any later version. | |
38 | ||
39 | ||
40 | =cut |