]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Split table into 3 pieces now.
authorBruno Haible <bruno@clisp.org>
Wed, 30 Jan 2002 12:10:34 +0000 (12:10 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 21 Jun 2009 23:10:26 +0000 (01:10 +0200)
Admin/Matrix.java

index 51f6615b9c1af18a6379a0d222a427ae577fe4f8..5e6f6768acee64d452e29fd175195464af3d8b9d 100644 (file)
@@ -150,6 +150,12 @@ public class Matrix {
       int ngroups;
       int[][] groups;
       if (true) {
+        ngroups = 3;
+        groups = new int[ngroups][];
+        groups[0] = new int[] { 0, nteams/3+1 };
+        groups[1] = new int[] { nteams/3+1, (2*nteams)/3+1 };
+        groups[2] = new int[] { (2*nteams)/3+1, nteams };
+      } else if (true) {
         ngroups = 2;
         groups = new int[ngroups][];
         groups[0] = new int[] { 0, nteams/2+1 };