diff options
author | Bruno Haible <bruno@clisp.org> | 2002-01-30 12:10:34 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-22 01:10:26 +0200 |
commit | 683dc24b563b31e5498add451e03f53f2f2713cb (patch) | |
tree | f467ec29975bf431def5ccf530585e2197fe392c | |
parent | f26b075138768e39cc3b4ee23f7b66640ad34ef4 (diff) | |
download | external_gettext-683dc24b563b31e5498add451e03f53f2f2713cb.zip external_gettext-683dc24b563b31e5498add451e03f53f2f2713cb.tar.gz external_gettext-683dc24b563b31e5498add451e03f53f2f2713cb.tar.bz2 |
Split table into 3 pieces now.
-rw-r--r-- | Admin/Matrix.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Admin/Matrix.java b/Admin/Matrix.java index 51f6615..5e6f676 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 }; |