From: simonmar Date: Tue, 28 Aug 2001 15:36:52 +0000 (+0000) Subject: [project @ 2001-08-28 15:36:52 by simonmar] X-Git-Tag: Approximately_9120_patches~1062 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7eeaf89848017cb71fb02e5112944c3ac65c61ee;p=ghc-hetmet.git [project @ 2001-08-28 15:36:52 by simonmar] Change the definition of recip in the instance of Fractional for Ratio, to: recip (x:%y) = y % x as per the revised Haskell 98 report. --- diff --git a/ghc/lib/std/PrelReal.lhs b/ghc/lib/std/PrelReal.lhs index 7229c6a..a68297f 100644 --- a/ghc/lib/std/PrelReal.lhs +++ b/ghc/lib/std/PrelReal.lhs @@ -1,5 +1,5 @@ % ------------------------------------------------------------------------------ -% $Id: PrelReal.lhs,v 1.13 2001/03/29 08:03:47 qrczak Exp $ +% $Id: PrelReal.lhs,v 1.14 2001/08/28 15:36:52 simonmar Exp $ % % (c) The University of Glasgow, 1994-2000 % @@ -226,7 +226,7 @@ instance (Integral a) => Num (Ratio a) where instance (Integral a) => Fractional (Ratio a) where {-# SPECIALIZE instance Fractional Rational #-} (x:%y) / (x':%y') = (x*y') % (y*x') - recip (x:%y) = if x < 0 then (-y) :% (-x) else y :% x + recip (x:%y) = y % x fromRational (x:%y) = fromInteger x :% fromInteger y instance (Integral a) => Real (Ratio a) where