From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2134) id 140F03858438; Fri, 16 Dec 2022 19:19:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 140F03858438 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1671218390; bh=XU7HDFMh4hRju/y/euhAd4rI5tdcJI/EV25BJB73MyI=; h=From:To:Subject:Date:From; b=nlb8Rjft0BU0IimS1IjcKy0/Y0nPOpw5WKYKonSM6eJaIE9POob2RfvjB2jJr9rRB quf8tW5nOu4CW6LTFi0s2lJI/4OLrHFp4cifz6ETT1AJ9s75EWw8VnjqQOSWgIG2zm qi0F3g556cGZ5OM44O3LaB9nsgLqdBhAtDHF6wEA= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jeff Johnston To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Fix 3 other instances of Reme typo (should be Remez) X-Act-Checkin: newlib-cygwin X-Git-Author: Jeff Johnston X-Git-Refname: refs/heads/master X-Git-Oldrev: c04c01524d20611fc14a17d2607e9c50bf5cc83e X-Git-Newrev: c8130c3fe8c7c662a94cd720bf62883bd628850f Message-Id: <20221216191950.140F03858438@sourceware.org> Date: Fri, 16 Dec 2022 19:19:50 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Dc8130c3fe8c= 7c662a94cd720bf62883bd628850f commit c8130c3fe8c7c662a94cd720bf62883bd628850f Author: Jeff Johnston Date: Fri Dec 16 14:18:56 2022 -0500 Fix 3 other instances of Reme typo (should be Remez) Diff: --- newlib/libm/common/s_expm1.c | 2 +- newlib/libm/common/s_log1p.c | 2 +- newlib/libm/math/e_log.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/newlib/libm/common/s_expm1.c b/newlib/libm/common/s_expm1.c index 10b0c8efb..51cdd2188 100644 --- a/newlib/libm/common/s_expm1.c +++ b/newlib/libm/common/s_expm1.c @@ -68,7 +68,7 @@ PORTABILITY * R1(r**2) =3D 6/r *((exp(r)+1)/(exp(r)-1) - 2/r) * =3D 6/r * ( 1 + 2.0*(1/(exp(r)-1) - 1/r)) * =3D 1 - r^2/60 + r^4/2520 - r^6/100800 + ... - * We use a special Reme algorithm on [0,0.347] to generate=20 + * We use a special Remez algorithm on [0,0.347] to generate=20 * a polynomial of degree 5 in r*r to approximate R1. The=20 * maximum error of this polynomial approximation is bounded=20 * by 2**-61. In other words, diff --git a/newlib/libm/common/s_log1p.c b/newlib/libm/common/s_log1p.c index c44461e8d..e3a3d9d9c 100644 --- a/newlib/libm/common/s_log1p.c +++ b/newlib/libm/common/s_log1p.c @@ -65,7 +65,7 @@ Interface Definition (Issue 2). * Let s =3D f/(2+f) ; based on log(1+f) =3D log(1+s) - log(1-s) * =3D 2s + 2/3 s**3 + 2/5 s**5 + ....., * =3D 2s + s*R - * We use a special Reme algorithm on [0,0.1716] to generate=20 + * We use a special Remez algorithm on [0,0.1716] to generate=20 * a polynomial of degree 14 to approximate R The maximum error=20 * of this polynomial approximation is bounded by 2**-58.45. In * other words, diff --git a/newlib/libm/math/e_log.c b/newlib/libm/math/e_log.c index ac4a95068..461ae0309 100644 --- a/newlib/libm/math/e_log.c +++ b/newlib/libm/math/e_log.c @@ -23,7 +23,7 @@ * Let s =3D f/(2+f) ; based on log(1+f) =3D log(1+s) - log(1-s) * =3D 2s + 2/3 s**3 + 2/5 s**5 + ....., * =3D 2s + s*R - * We use a special Reme algorithm on [0,0.1716] to generate=20 + * We use a special Remez algorithm on [0,0.1716] to generate=20 * a polynomial of degree 14 to approximate R The maximum error=20 * of this polynomial approximation is bounded by 2**-58.45. In * other words,