|
| 1 | +# FastDoubleParser |
| 2 | + |
| 3 | +This is a Java port of Daniel Lemire's fast_float project. |
| 4 | +This project provides parsers for double, float, BigDecimal and BigInteger values. |
| 5 | + |
| 6 | +Copyright (c) Daniel Lemire |
| 7 | + |
| 8 | +Boost Software License - Version 1.0 - August 17th, 2003 |
| 9 | + |
| 10 | +Permission is hereby granted, free of charge, to any person or organization |
| 11 | +obtaining a copy of the software and accompanying documentation covered by |
| 12 | +this license (the "Software") to use, reproduce, display, distribute, |
| 13 | +execute, and transmit the Software, and to prepare derivative works of the |
| 14 | +Software, and to permit third-parties to whom the Software is furnished to |
| 15 | +do so, all subject to the following: |
| 16 | + |
| 17 | +The copyright notices in the Software and this entire statement, including |
| 18 | +the above license grant, this restriction and the following disclaimer, |
| 19 | +must be included in all copies of the Software, in whole or in part, and |
| 20 | +all derivative works of the Software, unless such copies or derivative |
| 21 | +works are solely in the form of machine-executable object code generated by |
| 22 | +a source language processor. |
| 23 | + |
| 24 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 25 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 26 | +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT |
| 27 | +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE |
| 28 | +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, |
| 29 | +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 30 | +DEALINGS IN THE SOFTWARE. |
| 31 | + |
| 32 | +------ |
| 33 | +Third-party license for |
| 34 | +fast_float, Copyright (c) 2021 The fast_float authors. MIT License. |
| 35 | +https://github.com/fastfloat/fast_float |
| 36 | +https://github.com/fastfloat/fast_float/blob/35d523195bf7d57aba0e735ad6eba1e6f71ba8d6/LICENSE-MIT |
| 37 | + |
| 38 | +MIT License |
| 39 | + |
| 40 | +Copyright (c) 2021 The fast_float authors |
| 41 | + |
| 42 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 43 | +of this software and associated documentation files (the "Software"), to deal |
| 44 | +in the Software without restriction, including without limitation the rights |
| 45 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 46 | +copies of the Software, and to permit persons to whom the Software is |
| 47 | +furnished to do so, subject to the following conditions: |
| 48 | + |
| 49 | +The above copyright notice and this permission notice shall be included in all |
| 50 | +copies or substantial portions of the Software. |
| 51 | + |
| 52 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 53 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 54 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 55 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 56 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 57 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 58 | +SOFTWARE. |
| 59 | +------ |
| 60 | +Third-party license for |
| 61 | +bigint, Copyright 2020 Tim Buktu. 2-clause BSD License. |
| 62 | +https://github.com/tbuktu/bigint/tree/floatfft |
| 63 | +https://github.com/tbuktu/bigint/blob/617c8cd8a7c5e4fb4d919c6a4d11e2586107f029/LICENSE |
| 64 | +https://github.com/wrandelshofer/FastDoubleParser/blob/39e123b15b71f29a38a087d16a0bc620fc879aa6/bigint-LICENSE |
| 65 | +(We only use those portions of the bigint project that can be licensed under 2-clause BSD License.) |
| 66 | + |
| 67 | +2-clause BSD License |
| 68 | + |
| 69 | +Copyright 2022 Tim Buktu |
| 70 | + |
| 71 | +Redistribution and use in source and binary forms, with or without |
| 72 | +modification, are permitted provided that the following conditions |
| 73 | +are met: |
| 74 | + |
| 75 | +1. Redistributions of source code must retain the above copyright notice, this |
| 76 | + list of conditions and the following disclaimer. |
| 77 | + |
| 78 | +2. Redistributions in binary form must reproduce the above copyright notice, |
| 79 | + this list of conditions and the following disclaimer in the documentation |
| 80 | + and/or other materials provided with the distribution. |
| 81 | + |
| 82 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND |
| 83 | +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 84 | +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 85 | +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| 86 | +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 87 | +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 88 | +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 89 | +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 90 | +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 91 | +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
0 commit comments