Skip to content

Commit

Permalink
correct author name
Browse files Browse the repository at this point in the history
  • Loading branch information
expipiplus1 committed Dec 13, 2021
1 parent f201e3e commit 446939c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015 Joe Hermaszewski
Copyright (c) 2015 Ellie Hermaszewska

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log

## WIP
- Correct author name

## [0.12.5] - 2021-05-29
- Tweak test suite to fix #35
Expand Down
8 changes: 4 additions & 4 deletions exact-real.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.24

-- This file has been generated from package.yaml by hpack version 0.34.4.
-- This file has been generated from package.yaml by hpack version 0.34.5.
--
-- see: https://github.com/sol/hpack

Expand All @@ -11,9 +11,9 @@ description: A type to represent exact real numbers using fast binary Cauchy
category: Math
homepage: https://github.com/expipiplus1/exact-real#readme
bug-reports: https://github.com/expipiplus1/exact-real/issues
author: Joe Hermaszewski
maintainer: Joe Hermaszewski <keep.it.real@monoid.al>
copyright: 2020 Joe Hermaszewski
author: Ellie Hermaszewska
maintainer: Ellie Hermaszewska <keep.it.real@monoid.al>
copyright: 2020 Ellie Hermaszewska
license: MIT
license-file: LICENSE
build-type: Custom
Expand Down
6 changes: 3 additions & 3 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ version: "0.12.5"
synopsis: Exact real arithmetic
description: A type to represent exact real numbers using fast binary Cauchy sequences.
category: Math
author: Joe Hermaszewski
maintainer: Joe Hermaszewski <keep.it.real@monoid.al>
copyright: 2020 Joe Hermaszewski
author: Ellie Hermaszewska
maintainer: Ellie Hermaszewska <keep.it.real@monoid.al>
copyright: 2020 Ellie Hermaszewska
github: expipiplus1/exact-real
extra-source-files:
- readme.md
Expand Down
16 changes: 12 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ examples in this readme.
0 :+ 0
```

Or:

```haskell
λ> let f :: a. Fractional a => (a, a); f = iterate (\(x0, x1) -> let x2 = 111 - (1130-3000/x0) / x1 in (x1, x2)) (11/2, 61/11) !! 100
λ> f @Double
(100.0,100.0)
λ> f @(CReal 10)
(6.0000,6.0000)
λ> f @(CReal 50)
(5.9999999879253263,5.9999999899377725)
```

Implementation
--------------

Expand Down Expand Up @@ -73,8 +85,4 @@ Contributing

Contributions and bug reports are welcome!

Please feel free to contact me on GitHub or as "jophish" on freenode.

-Joe

[goldberg]: http://www.validlab.com/goldberg/paper.pdf "What Every Computer Scientist Should Know About Floating-Point Arithmetic"

0 comments on commit 446939c

Please sign in to comment.