Package SevenZip.Compression.LZ

Examples of SevenZip.Compression.LZ.BinTree


    }        // end while
  }
 
  private void Create() {
    if (this._matchFinder == null) {
      BinTree bt = new BinTree();
      int numHashBytes = (this._matchFinderType == EMatchFinderTypeBT2) ? 2 : 4;
      bt.SetType(numHashBytes);
      this._matchFinder = bt;
    }
    this._literalEncoder.Create(this._numLiteralPosStateBits, this._numLiteralContextBits);
   
    if (this._dictionarySize == this._dictionarySizePrev && this._numFastBytesPrev == this._numFastBytes)
View Full Code Here

TOP

Related Classes of SevenZip.Compression.LZ.BinTree

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.