This commit is contained in:
Bruno Haible 2001-05-21 14:01:39 +00:00
parent bedfaef059
commit 67829cff25

View File

@ -136,11 +136,11 @@ public class Matrix {
// Split into separate tables, to keep 80 column width.
int ngroups;
int[][] groups;
if (nteams == 28) {
if (nteams == 29) {
ngroups = 2;
groups = new int[ngroups][];
groups[0] = new int[] { 0, 15 };
groups[1] = new int[] { 15, 28 };
groups[1] = new int[] { 15, 29 };
} else {
ngroups = 1;
groups = new int[ngroups][];
@ -228,13 +228,14 @@ public class Matrix {
stream.print(s);
spaces(stream,(i+1)/2);
}
stream.print(' ');
stream.print(' ');
{
if (group == ngroups-1) {
stream.print(' ');
stream.print(' ');
String s = Integer.toString(total);
spaces(stream,3-s.length());
stream.println(s);
stream.print(s);
}
stream.println();
stream.println("@end group");
}