File: Log.hs

package info (click to toggle)
bali-phy 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,392 kB
  • sloc: cpp: 120,442; xml: 13,966; haskell: 9,975; python: 2,936; yacc: 1,328; perl: 1,169; lex: 912; sh: 343; makefile: 26
file content (25 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module Numeric.Log where

import Compiler.Floating

data Log a = Exp a

instance RealFloat a => Num (Log a) where
    Exp x + Exp y = Exp (x + log1p(exp(y-x)))
    Exp x - Exp y = Exp (x - log1p(exp(y-x)))
    Exp x * Exp y = Exp (x + y)
    negate = error "Negation not allowed"
    abs = id
    signum _ = Exp 0
    fromInteger x = Exp (log (fromInteger x))

instance RealFloat a => Fractional (Log a) where
    Exp x / Exp y = Exp (x - y)
    recip (Exp x) = Exp $ -x

instance Pow (Log Double) where
    pow (Exp x) t = Exp $ x*t
    ln (Exp x) = x
    expTo x = Exp x