From: Bruno Haible Date: Sat, 27 Mar 2010 20:24:33 +0000 (+0100) Subject: Split into 6 tables now. X-Git-Tag: v0.18~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4d2c13f6d3a9d9285d94ca5ed3ab29104d557b4;p=thirdparty%2Fgettext.git Split into 6 tables now. --- diff --git a/gettext-runtime/doc/Admin/Matrix.java b/gettext-runtime/doc/Admin/Matrix.java index 72af667b9..70de8345a 100644 --- a/gettext-runtime/doc/Admin/Matrix.java +++ b/gettext-runtime/doc/Admin/Matrix.java @@ -164,6 +164,15 @@ public class Matrix { int ngroups; int[][] groups; if (true) { + ngroups = 6; + groups = new int[ngroups][]; + groups[0] = new int[] { 0, (nteams-5)/6 }; + groups[1] = new int[] { (nteams-5)/6, (2*nteams-9)/6 }; + groups[2] = new int[] { (2*nteams-9)/6, (3*nteams-1)/6 }; + groups[3] = new int[] { (3*nteams-1)/6, (4*nteams+2)/6 }; + groups[4] = new int[] { (4*nteams+2)/6, (5*nteams+10)/6 }; + groups[5] = new int[] { (5*nteams+10)/6, nteams }; + } else if (true) { ngroups = 5; groups = new int[ngroups][]; groups[0] = new int[] { 0, (nteams+4)/5 };