fast-arithmetic 0.6.0.6 → 0.6.0.7
raw patch · 7 files changed
+9/−8 lines, 7 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- README.md +1/−0
- atspkg.dhall +2/−2
- cbits/combinatorics.c +1/−1
- cbits/number-theory.c +1/−1
- cbits/numerics.c +1/−1
- fast-arithmetic.cabal +2/−2
- pkg.dhall +1/−1
README.md view
@@ -2,6 +2,7 @@ [](https://travis-ci.org/vmchale/hs-ats) [](http://hackage.haskell.org/package/fast-arithmetic)+[](https://hackage.haskell.org/package/fast-arithmetic) This is a library for fast arithmetical functions using ATS, with a Haskell wrapper.
atspkg.dhall view
@@ -2,10 +2,10 @@ let prelude = https://raw.githubusercontent.com/vmchale/atspkg/master/ats-pkg/dhall/atspkg-prelude.dhall in -let map = https://ipfs.io/ipfs/QmQ8w5PLcsNz56dMvRtq54vbuPe9cNnCCUXAQp6xLc6Ccx/Prelude/List/map+let map = http://hackage.haskell.org/package/dhall-1.14.0/src/Prelude/List/map in -let not = https://ipfs.io/ipfs/QmQ8w5PLcsNz56dMvRtq54vbuPe9cNnCCUXAQp6xLc6Ccx/Prelude/Bool/not+let not = http://hackage.haskell.org/package/dhall-1.14.0/src/Prelude/Bool/not in {- Types -}
cbits/combinatorics.c view
@@ -1,7 +1,7 @@ /* ** ** The C code is generated by [ATS/Postiats-0-3-10]-** The starting compilation time is: 2018-5-16: 23h:22m+** The starting compilation time is: 2018-5-30: 19h:45m ** */
cbits/number-theory.c view
@@ -1,7 +1,7 @@ /* ** ** The C code is generated by [ATS/Postiats-0-3-10]-** The starting compilation time is: 2018-5-16: 23h:22m+** The starting compilation time is: 2018-5-30: 19h:45m ** */
cbits/numerics.c view
@@ -1,7 +1,7 @@ /* ** ** The C code is generated by [ATS/Postiats-0-3-10]-** The starting compilation time is: 2018-5-16: 23h:22m+** The starting compilation time is: 2018-5-30: 19h:45m ** */
fast-arithmetic.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: fast-arithmetic-version: 0.6.0.6+version: 0.6.0.7 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018 Vanessa McHale@@ -52,7 +52,7 @@ .atspkg/contrib/ats-includes-0.3.10/ .atspkg/contrib ghc-options: -Wall -optc-mtune=native -optc-flto -optc-O3 build-depends:- base >=4.5 && <5,+ base >=4.3 && <5, composition-prelude >=1.2.0.0, gmpint -any
pkg.dhall view
@@ -1,5 +1,5 @@ let prelude = https://raw.githubusercontent.com/vmchale/atspkg/master/ats-pkg/dhall/atspkg-prelude.dhall -in λ(x : List Integer) →+in λ(x : List Natural) → prelude.makeHsPkg { x = x, name = "fast-arithmetic" } ⫽ { libDeps = prelude.mapPlainDeps [ "atscntrb-hx-intinf" ], description = [ "Library for number theory & combinatorics in ATS" ] : Optional Text }