exact-real 0.12.0 → 0.12.1
raw patch · 3 files changed
+5/−5 lines, 3 filesdep ~doctestPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: doctest
API changes (from Hackage documentation)
- Data.CReal.Converge: type family Element a;
- Data.CReal.Converge: }
- Data.CReal.Internal: infixl 7 /.
- Data.CReal.Internal: infixl 8 `shiftR`
- Data.CReal.Converge: class Converge a where {
+ Data.CReal.Converge: class Converge a where type family Element a
Files
- exact-real.cabal +2/−2
- readme.md +1/−1
- test/Ord.hs +2/−2
exact-real.cabal view
@@ -1,5 +1,5 @@ name: exact-real-version: 0.12.0+version: 0.12.1 synopsis: Exact real arithmetic description: A type to represent exact real numbers using fast binary Cauchy sequences.@@ -110,6 +110,6 @@ build-depends: base >= 4 && < 5, directory >= 1.0 && < 1.3,- doctest >= 0.8 && < 0.11,+ doctest >= 0.8 && < 0.12, filepath >= 1.3 && < 1.5
readme.md view
@@ -21,7 +21,7 @@ 0.0 :+ (-8.742278e-8) ``` -... and with a `CReal`+... and with a `CReal`: ``` haskell λ> import Data.CReal
test/Ord.hs view
@@ -19,13 +19,13 @@ , testTreeFromNamedBatch ">= is a total ordering" (ordRel (>=) gen) , complement "< is the complement of >=" gen (<) (>=) , complement "> is the complement of <=" gen (>) (<=)- , testProperty "max x y >= x xnd y" (property $ \x y ->+ , testProperty "max x y >= x and y" (property $ \x y -> let m = max x y :: a in m >= x && m >= y) , testProperty "max x y == x or y" (property $ \x y -> let m = max x y :: a in m == x || m == y)- , testProperty "min x y >= x xnd y" (property $ \x y ->+ , testProperty "min x y >= x and y" (property $ \x y -> let m = min x y :: a in m <= x && m <= y) , testProperty "min x y == x or y" (property $ \x y ->