]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Split table into 5 parts now.
authorBruno Haible <bruno@clisp.org>
Mon, 14 Feb 2005 11:04:15 +0000 (11:04 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:12:15 +0000 (12:12 +0200)
gettext-runtime/doc/Admin/Matrix.java

index 7db451375a5d2f01c7c04929202cc150b25a0960..4a1a865aeb36dc6971f5dea1cdad0b833d2f79fb 100644 (file)
@@ -164,6 +164,14 @@ public class Matrix {
       int ngroups;
       int[][] groups;
       if (true) {
+        ngroups = 5;
+        groups = new int[ngroups][];
+        groups[0] = new int[] { 0, (nteams+4)/5 };
+        groups[1] = new int[] { (nteams+4)/5, (2*nteams+8)/5 };
+        groups[2] = new int[] { (2*nteams+8)/5, (3*nteams+12)/5 };
+        groups[3] = new int[] { (3*nteams+12)/5, (4*nteams+12)/5 };
+        groups[4] = new int[] { (4*nteams+12)/5, nteams };
+      } else if (true) {
         ngroups = 4;
         groups = new int[ngroups][];
         groups[0] = new int[] { 0, nteams/4+1 };