Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 99 | pmbaty | 1 | Gaviota Tablebases Probing Code API |
| 2 | Copyright (c) 2010 Miguel A. Ballicora |
||
| 3 | ----------------------------------------------------------------------------- |
||
| 4 | |||
| 5 | LICENSES |
||
| 6 | |||
| 7 | ----------------------------------------------------------------------------- |
||
| 8 | This Software is distributed with the following X11 License, |
||
| 9 | sometimes also known as MIT license. |
||
| 10 | |||
| 11 | Copyright (c) 2010 Miguel A. Ballicora |
||
| 12 | |||
| 13 | Permission is hereby granted, free of charge, to any person |
||
| 14 | obtaining a copy of this software and associated documentation |
||
| 15 | files (the "Software"), to deal in the Software without |
||
| 16 | restriction, including without limitation the rights to use, |
||
| 17 | copy, modify, merge, publish, distribute, sublicense, and/or sell |
||
| 18 | copies of the Software, and to permit persons to whom the |
||
| 19 | Software is furnished to do so, subject to the following |
||
| 20 | conditions: |
||
| 21 | |||
| 22 | The above copyright notice and this permission notice shall be |
||
| 23 | included in all copies or substantial portions of the Software. |
||
| 24 | |||
| 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||
| 26 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
||
| 27 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
||
| 28 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
||
| 29 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
||
| 30 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||
| 31 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
||
| 32 | OTHER DEALINGS IN THE SOFTWARE. |
||
| 33 | |||
| 34 | ----------------------------------------------------------------------------- |
||
| 35 | This Software also contain the following compression libraries: |
||
| 36 | ----------------------------------------------------------------------------- |
||
| 37 | LZMA: |
||
| 38 | 2009-02-02 : Igor Pavlov : Public domain |
||
| 39 | ----------------------------------------------------------------------------- |
||
| 40 | ZLIB License |
||
| 41 | |||
| 42 | /* zlib.h -- interface of the 'zlib' general purpose compression library |
||
| 43 | version 1.2.3, July 18th, 2005 |
||
| 44 | |||
| 45 | Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler |
||
| 46 | |||
| 47 | This software is provided 'as-is', without any express or implied |
||
| 48 | warranty. In no event will the authors be held liable for any damages |
||
| 49 | arising from the use of this software. |
||
| 50 | |||
| 51 | Permission is granted to anyone to use this software for any purpose, |
||
| 52 | including commercial applications, and to alter it and redistribute it |
||
| 53 | freely, subject to the following restrictions: |
||
| 54 | |||
| 55 | 1. The origin of this software must not be misrepresented; you must not |
||
| 56 | claim that you wrote the original software. If you use this software |
||
| 57 | in a product, an acknowledgment in the product documentation would be |
||
| 58 | appreciated but is not required. |
||
| 59 | 2. Altered source versions must be plainly marked as such, and must not be |
||
| 60 | misrepresented as being the original software. |
||
| 61 | 3. This notice may not be removed or altered from any source distribution. |
||
| 62 | |||
| 63 | Jean-loup Gailly Mark Adler |
||
| 64 | jloup@gzip.org madler@alumni.caltech.edu |
||
| 65 | |||
| 66 | |||
| 67 | The data format used by the zlib library is described by RFCs (Request for |
||
| 68 | Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt |
||
| 69 | (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). |
||
| 70 | */ |
||
| 71 | ---------------------------------------------------------------------------- |
||
| 72 | LZF: |
||
| 73 | |||
| 74 | Copyright (c) 2000-2007 Marc Alexander Lehmann <schmorp@schmorp.de> |
||
| 75 | |||
| 76 | Redistribution and use in source and binary forms, with or without modifica- |
||
| 77 | tion, are permitted provided that the following conditions are met: |
||
| 78 | |||
| 79 | 1. Redistributions of source code must retain the above copyright notice, |
||
| 80 | this list of conditions and the following disclaimer. |
||
| 81 | |||
| 82 | 2. Redistributions in binary form must reproduce the above copyright |
||
| 83 | notice, this list of conditions and the following disclaimer in the |
||
| 84 | documentation and/or other materials provided with the distribution. |
||
| 85 | |||
| 86 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
||
| 87 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- |
||
| 88 | CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
||
| 89 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- |
||
| 90 | CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||
| 91 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
||
| 92 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
||
| 93 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH- |
||
| 94 | ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
||
| 95 | OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 96 | |||
| 97 | Alternatively, the following files carry an additional notice that |
||
| 98 | explicitly allows relicensing under the GPLv2: lzf.c lzf.h lzfP.h lzf_c.c |
||
| 99 | lzf_d.c |
||
| 100 | ----------------------------------------------------------------------------- |