home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c019 / 5.ddi / SIXPACK.ZIP / SIXPACK.TXT < prev   
Encoding:
Text File  |  1993-05-19  |  764 b   |  29 lines

  1. The SIXPACK program implements a faithful port from C of a unique
  2. compression algorithm submitted to the DR DOBBS compression contest
  3. a few years back by Philip G. Gage.
  4.  
  5. The algorithm is implemented in the context of a stand-alone file
  6. compression utility, which can be used to compress/decompress files
  7. one at a time.
  8.  
  9.  
  10.  
  11. NOTE: There is a statement in sixpack:
  12.  
  13. CONST
  14.   MaxDistance : Integer = CopyMax[PRED(COPYRANGES)];
  15.  
  16.   which causes the TP7 compiler to give the error "cannot evaluate
  17.   this expression".  I have no idea why, but so long as you don't
  18.   change anything else, you can hard code the value to be:
  19.  
  20. CONST
  21.   MaxDistance : integer = 21839;
  22.  
  23.   TP6 does not have this problem.
  24.  
  25.  
  26. Douglas P. Webb
  27. dwebb@binkley.cs.mcgill.ca
  28.  
  29.