From: Bruno Haible Date: Wed, 30 Jan 2002 12:10:34 +0000 (+0000) Subject: Split table into 3 pieces now. X-Git-Tag: v0.11~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=683dc24b563b31e5498add451e03f53f2f2713cb;p=thirdparty%2Fgettext.git Split table into 3 pieces now. --- diff --git a/Admin/Matrix.java b/Admin/Matrix.java index 51f6615b9..5e6f6768a 100644 --- a/Admin/Matrix.java +++ b/Admin/Matrix.java @@ -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 };