mealy 0.4.4 → 0.4.4.1
raw patch · 2 files changed
+9/−11 lines, 2 filesdep ~adjunctionsdep ~containersdep ~mwc-probability
Dependency ranges changed: adjunctions, containers, mwc-probability, numhask, numhask-array, primitive, text
Files
- mealy.cabal +9/−9
- readme.org +0/−2
mealy.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: mealy-version: 0.4.4+version: 0.4.4.1 license: BSD-3-Clause license-file: LICENSE copyright: Tony Day (c) 2013@@ -21,7 +21,7 @@ (91.00265621044142,9.472822805289121) build-type: Simple-tested-with: GHC == 8.10.7 || ==9.2.8 || ==9.4.5 || ==9.6.2+tested-with: GHC == 8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 extra-doc-files: ChangeLog.md readme.org@@ -101,16 +101,16 @@ import: ghc2021-stanza hs-source-dirs: src build-depends:- , adjunctions >=4.0 && <5+ , adjunctions >=4.0 && <4.5 , base >=4.7 && <5- , containers >=0.6 && <0.7- , mwc-probability ^>=2.3.1- , numhask >=0.10 && <0.12- , numhask-array >=0.10 && <0.12- , primitive >=0.7.2 && <0.9+ , containers >=0.6 && <0.8+ , mwc-probability >=2.3.1 && <2.4+ , numhask >=0.11 && <0.12+ , numhask-array >=0.11 && <0.12+ , primitive >=0.7.2 && <0.10 , profunctors >=5.6.2 && <5.7 , tdigest >=0.2.1 && <0.4- , text >=1.2 && <2.1+ , text >=1.2 && <2.2 , vector >=0.12.3 && <0.14 , vector-algorithms >=0.8.0 && <0.10 exposed-modules:
readme.org view
@@ -18,7 +18,6 @@ Usage is to supply a decay function representing the relative weights of recent values versus older ones, in the manner of exponentially-weighted averages. The library attempts to be polymorphic in the statistic which can be combined in applicative style. #+begin_src haskell :results output-:set prompt "> " import Prelude import Data.Mealy #+end_src@@ -29,7 +28,6 @@ #+RESULTS: : (91.00265621044142,9.472822805289121)- * Reference