1Algorithm-Pair-Best2 - 'best score' pairing algorithm
2====================
3
4This is a re-write of Algorithm::Pair::Best.  The interface is
5simplified and the implementation is significantly streamlined.
6
7Algorithm::Pair::Best2 provides a 'best score' pairing algorithm (for
8go tournaments, for example).  Every possible pair gets a 'score' (or
9perhaps 'penalty' is a better way to think about it) via a user
10defined subroutine, and Algorithm::Pair::Best tries all possible
11combinations of pairs to return the pairings with the best total score
12(lowest penalty).
13
14
15INSTALLATION
16
17To install this module type the following:
18
19   perl Makefile.PL
20   make
21   make test
22   make install
23
24
25COPYRIGHT AND LICENCE
26
27Copyright (C) 2011 by Reid Augustin
28
29This library is free software; you can redistribute it and/or modify
30it under the same terms as Perl itself, either Perl version 5.8.3 or,
31at your option, any later version of Perl 5 you may have available.
32