From owner-freebsd-numerics@FreeBSD.ORG Fri Sep 12 22:41:13 2014 Return-Path: Delivered-To: freebsd-numerics@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86E03EB1 for ; Fri, 12 Sep 2014 22:41:13 +0000 (UTC) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "troutmask.apl.washington.edu", Issuer "troutmask.apl.washington.edu" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 493023D6 for ; Fri, 12 Sep 2014 22:41:13 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.9/8.14.9) with ESMTP id s8CMfCKk097730 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 12 Sep 2014 15:41:12 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.9/8.14.9/Submit) id s8CMfCWm097729; Fri, 12 Sep 2014 15:41:12 -0700 (PDT) (envelope-from sgk) Date: Fri, 12 Sep 2014 15:41:12 -0700 From: Steve Kargl To: enh Subject: Re: lgamma_r and lgammaf_r return the wrong sign for -0.f Message-ID: <20140912224112.GA97578@troutmask.apl.washington.edu> References: <20140912220544.GA96714@troutmask.apl.washington.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-numerics@freebsd.org X-BeenThere: freebsd-numerics@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "Discussions of high quality implementation of libm functions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 22:41:13 -0000 On Fri, Sep 12, 2014 at 03:17:02PM -0700, enh via freebsd-numerics wrote: > On Fri, Sep 12, 2014 at 3:05 PM, Steve Kargl > > F.9.5.3 The lgamma functions > > -- lgamma(1) returns +0. > > -- lgamma(2) returns +0. > > -- lgamma(x) returns +inf and raises the ``divide-by-zero'' floating-point > > exception for x a negative integer or zero. > > -- lgamma(-inf) returns +inf. > > -- lgamma(+inf) returns +inf. > > > > See the 3rd bullet. -0 is 0 and -0 is a negative integer. Of course, neither POSIX nor ISO C specify lgamma_r() only lgamma. I just spent too much time on the 'divide-by-zero' bug, and conflated that with signgam. > > POSIX appears to defer to ISO C. n1570.pdf (committe draft for C11) > > has (almost?) identical text. > > > >> patch below (whitespace mangled courtesy of gmail). i'd prefer to wait > >> for this to be fixed in FreeBSD and pull down the fix rather than just > >> fix it locally. > > > > I have a bigger patch coming with ld80 and ld128 version of lgammal > > and lgammal_r. > > sorry, i haven't even looked at the *l variants. I only just finished writing the *l variants. It took me a long time to unwind the comments in e_lgamma_r.c, so that I could write the long double versions. -- Steve