phonetic-languages-rhythmicity 0.10.1.0 → 0.10.2.0
raw patch · 4 files changed
+10/−5 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- Phladiprelio/Rhythmicity/Factor.hs +2/−2
- Phladiprelio/Rhythmicity/Simple.hs +2/−2
- phonetic-languages-rhythmicity.cabal +1/−1
CHANGELOG.md view
@@ -105,3 +105,8 @@ ## 0.10.1.0 -- 2023-02-05 * Tenth version revised A. Fixed issues with maxPosition2F function. ++## 0.10.2.0 -- 2023-02-05++* Tenth version revised B. Normed the functions in the Phladiprelio.Rhythmicity.Simple and Phladiprelio.Rhythmicity.Factor modules.+
Phladiprelio/Rhythmicity/Factor.hs view
@@ -72,7 +72,7 @@ defFactorsStr = "54321pi543" evalRhythmicity23F :: Factors -> Double -> [Double] -> Double-evalRhythmicity23F ff k xs = maxPosition2F ff k xs + maxPosition3 xs+evalRhythmicity23F ff k xs = maxPosition2F ff k xs + 14.37 * maxPosition3 xs {-# INLINE evalRhythmicity23F #-} evalRhythmicity23KF@@ -82,5 +82,5 @@ -> Double -> [Double] -> Double-evalRhythmicity23KF ff k k2 k3 xs = k2 * maxPosition2F ff k xs + k3 * maxPosition3 xs+evalRhythmicity23KF ff k k2 k3 xs = k2 * maxPosition2F ff k xs + k3 * 14.37 * maxPosition3 xs {-# INLINE evalRhythmicity23KF #-}
Phladiprelio/Rhythmicity/Simple.hs view
@@ -57,11 +57,11 @@ | otherwise = (t,u,w + (1::Int16)) evalRhythmicity23 :: (RealFrac a, Floating a) => [a] -> a-evalRhythmicity23 xs = maxPosition2 xs + maxPosition3 xs+evalRhythmicity23 xs = maxPosition2 xs + 1.31 * maxPosition3 xs evalRhythmicity23K :: (RealFrac a, Floating a) => a -> a -> [a] -> a-evalRhythmicity23K k2 k3 xs = k2 * maxPosition2 xs + k3 * maxPosition3 xs+evalRhythmicity23K k2 k3 xs = k2 * maxPosition2 xs + k3 * 1.31 * maxPosition3 xs
phonetic-languages-rhythmicity.cabal view
@@ -2,7 +2,7 @@ -- For further documentation, see http://haskell.org/cabal/users-guide/ name: phonetic-languages-rhythmicity-version: 0.10.1.0+version: 0.10.2.0 synopsis: Allows to estimate the rhythmicity properties for the text description: Allows to estimate (somewhat to say, evaluate) the rhythmicity properties for the text. Inspired by the ancient Greek and Latin poetry.