Example #1
0
  public void compressNext(ReadData data) throws IOException {
    dictionary.learn(data);
    reads++;

    if (reads % 100000 == 0) {
      System.err.println("Reads processed: " + reads);
    }
  }
Example #2
0
 private void save() throws IOException {
   dictionary.writeDictionaryToFile(new FileOutputStream("tree.out"));
 }