• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Games/H03-May-2022-711328

t/H15-Nov-2015-750572

Build.PLH A D15-Nov-20151.1 KiB5542

ChangesH A D15-Nov-2015269 106

LICENSEH A D15-Nov-201517.9 KiB380292

MANIFESTH A D15-Nov-2015544 3231

META.ymlH A D15-Nov-2015575 2322

Makefile.PLH A D15-Nov-2015443 1513

READMEH A D15-Nov-20151 KiB4026

dist.iniH A D15-Nov-2015729 4236

README

1Games-RoundRobin-Tournament version 0.02
2
3Round-Robin Tournament Schedule Pairings
4
5This module implements an algorithm that allows the setting up of round robin
6tournaments, a form of competition where all members play in all the rounds and
7every member meets every other member once and only once over the course of the
8tournament.
9
10This is a completely perl module. There is a dependency on Module::Build.
11
12This is version 0.02, the second version uploaded to CPAN.
13
14INSTALLATION
15
16The installation depended on Module::Build, rather than ExtUtils::MakeMaker.
17Now you can try the Makefile.PL, if you don't want to install
18Module::Build.
19
20To install this module, run the following commands:
21
22    perl Build.PL
23    ./Build
24    ./Build test
25    ./Build install
26
27or  perl Makefile.PL
28    make
29    make test
30    make install
31
32Perhaps instead of make, you will use nmake or dmake.
33
34COPYRIGHT AND LICENCE
35
36Copyright (C) 2006 Dr Bean
37
38This library is free software; you can redistribute it and/or modify
39it under the same terms as Perl itself.
40