packages feed

phonetic-languages-rhythmicity 0.1.0.0 → 0.1.0.1

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -3,3 +3,7 @@ ## 0.1.0.0 -- 2020-10-08  * First version. Released on an unsuspecting world.++## 0.1.0.1 -- 2020-10-08++* First version revised A. Improved computational simplicity.
Languages/Rhythmicity.hs view
@@ -51,11 +51,11 @@               | otherwise = (t,u,w + 1.0)  evalRhythmicity23 :: (RealFrac a, Floating a) => [a] -> a-evalRhythmicity23 xs = maxPosition2 xs ** 2.0 + maxPosition3 xs ** 2.0+evalRhythmicity23 xs = maxPosition2 xs * maxPosition2 xs + maxPosition3 xs * maxPosition3 xs  evalRhythmicity23K   :: (RealFrac a, Floating a) => a   -> a   -> [a]   -> a-evalRhythmicity23K k2 k3 xs = k2 * maxPosition2 xs ** 2.0 + k3 * maxPosition3 xs ** 2.0+evalRhythmicity23K k2 k3 xs = k2 * maxPosition2 xs * maxPosition2 xs + k3 * maxPosition3 xs * 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.1.0.0+version:             0.1.0.1 synopsis:            Allows to estimate the rhythmicity metrices for the text (usually, the Ukrainian poetic one) description:         Allows to estimate (somewhat to say, evaluate) the rhythmicity metrices for the text (usually, the Ukrainian poetic one, but it can be extrapolated to other ones). Inspired by the ancient Greek and Latin poetry.