for(int i = 0; i < (Card.NUM_CARDS-1); i++) {
for(int j = i+1; j < Card.NUM_CARDS; j++) {
String path = ROOT_OUTPUT_DIR + new Integer(i).toString() + "_" + new Integer(j).toString();
Helper.prepFilePath(path);
out[i][j] = new WriteBinaryScoreStream(
path, 5, new byte[] {(byte) i, (byte) j},
Helper.getBufferSize(MAX_SIMULT_FILES_OPEN));
}
}