rhythmic-sequences 0.1.1.0 → 0.1.2.0
raw patch · 4 files changed
+10/−5 lines, 4 files
Files
- CHANGELOG.md +4/−0
- rhythmic-sequences.cabal +2/−2
- src/Rhythmicity/BasicF.hs +3/−2
- src/Rhythmicity/MarkerSeqs.hs +1/−1
CHANGELOG.md view
@@ -8,3 +8,7 @@ * First version revised A. Fixed issue with being not compiled by the GHC-9.2 and higher. +## 0.1.2.0 -- 2023-02-27++* First version revised B. Fixed another issue with being not compiled by the GHC-9.2 and higher.+
rhythmic-sequences.cabal view
@@ -2,7 +2,7 @@ name: rhythmic-sequences -- The package version.-version: 0.1.1.0+version: 0.1.2.0 -- A short (one-line) description of the package. synopsis:@@ -42,7 +42,7 @@ -- other-modules: -- LANGUAGE extensions used by modules in this package.- other-extensions: Strict, StrictData, MagicHash, NoImplicitPrelude+ other-extensions: Strict, StrictData, NoImplicitPrelude -- Other library packages from which modules are imported. build-depends: base >=4.13 && <5
src/Rhythmicity/BasicF.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE NoImplicitPrelude, Strict, MagicHash #-}+{-# LANGUAGE NoImplicitPrelude, Strict #-} {-# OPTIONS_HADDOCK show-extensions #-} -- |@@ -20,9 +20,10 @@ import GHC.Real import GHC.List import GHC.Int+import GHC.Enum (fromEnum) hashPosLF2 :: Int8 -> [Integer] -> Integer-hashPosLF2 (I8# i) ns = shift (sum ns) (I# i)+hashPosLF2 i ns = shift (sum ns) . fromEnum $ i {-# INLINE hashPosLF2 #-} hashBalancingLF2 :: Int8 -> [Integer] -> Integer
src/Rhythmicity/MarkerSeqs.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE NoImplicitPrelude, MagicHash, BangPatterns #-}+{-# LANGUAGE NoImplicitPrelude, BangPatterns #-} {-# OPTIONS_HADDOCK show-extensions #-} -- |