| rev | line source | 
| alpar@9 | 1 NOTE: Files in this subdirectory are NOT part of the GLPK package, but | 
| alpar@9 | 2       are used with GLPK. | 
| alpar@9 | 3 | 
| alpar@9 | 4       The original code was modified according to GLPK requirements by | 
| alpar@9 | 5       Andrew Makhorin <mao@gnu.org>. | 
| alpar@9 | 6 | 
| alpar@9 | 7       The following files were rewritten: | 
| alpar@9 | 8       gzguts.h, zconf.h, zutil.h. | 
| alpar@9 | 9 | 
| alpar@9 | 10       The following files were added: | 
| alpar@9 | 11       zio.h, zio.c. | 
| alpar@9 | 12 | 
| alpar@9 | 13       Other files were not changed. | 
| alpar@9 | 14 ************************************************************************ | 
| alpar@9 | 15 zlib general purpose compression library | 
| alpar@9 | 16 version 1.2.5, April 19th, 2010 | 
| alpar@9 | 17 | 
| alpar@9 | 18 Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler | 
| alpar@9 | 19 | 
| alpar@9 | 20 This software is provided 'as-is', without any express or implied | 
| alpar@9 | 21 warranty. In no event will the authors be held liable for any damages | 
| alpar@9 | 22 arising from the use of this software. | 
| alpar@9 | 23 | 
| alpar@9 | 24 Permission is granted to anyone to use this software for any purpose, | 
| alpar@9 | 25 including commercial applications, and to alter it and redistribute it | 
| alpar@9 | 26 freely, subject to the following restrictions: | 
| alpar@9 | 27 | 
| alpar@9 | 28 1. The origin of this software must not be misrepresented; you must not | 
| alpar@9 | 29    claim that you wrote the original software. If you use this software | 
| alpar@9 | 30    in a product, an acknowledgment in the product documentation would | 
| alpar@9 | 31    be appreciated but is not required. | 
| alpar@9 | 32 | 
| alpar@9 | 33 2. Altered source versions must be plainly marked as such, and must not | 
| alpar@9 | 34    be misrepresented as being the original software. | 
| alpar@9 | 35 | 
| alpar@9 | 36 3. This notice may not be removed or altered from any source | 
| alpar@9 | 37    distribution. | 
| alpar@9 | 38 | 
| alpar@9 | 39 Jean-loup Gailly        Mark Adler | 
| alpar@9 | 40 jloup@gzip.org          madler@alumni.caltech.edu | 
| alpar@9 | 41 | 
| alpar@9 | 42 The data format used by the zlib library is described by RFCs (Request | 
| alpar@9 | 43 for Comments) 1950 to 1952 in the files | 
| alpar@9 | 44 http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate | 
| alpar@9 | 45 format) and rfc1952.txt (gzip format). |