packages feed

uniqueness-periods-vector-properties 0.5.1.0 → 0.5.2.0

raw patch · 3 files changed

+19/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Languages.UniquenessPeriods.Vector.PropertiesFuncRep: procBothFneg :: FuncRep String (UniquenessGeneral2 Char) [Float]
+ Languages.UniquenessPeriods.Vector.PropertiesFuncRep: procRhythmicity23Fneg :: FuncRep String (UniquenessGeneral2 Char) [Float]

Files

ChangeLog.md view
@@ -41,5 +41,9 @@  ## 0.5.1.0 -- 2020-10-09 -* Fifth version revised A. Added a new function procDiverse2Ineg to the module Languages.UniquenessPeriods.Vector.PropertiesFuncRep. It can be used for minimum- lookup.+* Fifth version revised A. Added a new function procDiverse2Ineg to the module Languages.UniquenessPeriods.Vector.PropertiesFuncRep. It can be used for the minimum element lookup.++## 0.5.2.0 -- 2020-10-09++* Fifth version revised B. Added two more new functions procRhythmicity23Fneg and procBothFneg to the module+Languages.UniquenessPeriods.Vector.PropertiesFuncRep. They can be used for the minimum element lookup.
Languages/UniquenessPeriods/Vector/PropertiesFuncRep.hs view
@@ -18,7 +18,9 @@   -- * Functions with 'Float'   , procDiverse2F   , procRhythmicity23F+  , procRhythmicity23Fneg   , procBothF+  , procBothFneg ) where  #ifdef __GLASGOW_HASKELL__@@ -62,6 +64,16 @@ procRhythmicity23F = U1 (justOneValue2Property . rhythmicity0) {-# INLINE procRhythmicity23F #-} +-- | Can be used to find out the minimum element.+procRhythmicity23Fneg :: FuncRep String (UniquenessGeneral2 Char) [Float]+procRhythmicity23Fneg = U1 (justOneValue2Property . negate . rhythmicity0)+{-# INLINE procRhythmicity23Fneg #-}+ procBothF :: FuncRep String (UniquenessGeneral2 Char) [Float] procBothF = U1 (\xs -> let ys = convertToProperUkrainian xs in [(int2Float . diverse2 . uniquenessPeriodsVector3 " 01-" . aux0  $ ys)*(evalRhythmicity23 . mconcat . syllableDurations . map ( createSyllablesP . additionalF) . vecWords $ ys)]) {-# INLINE procBothF #-}++-- | Can be used to find out the minimum element.+procBothFneg :: FuncRep String (UniquenessGeneral2 Char) [Float]+procBothFneg = U1 (\xs -> let ys = convertToProperUkrainian xs in [(int2Float . negate . diverse2 . uniquenessPeriodsVector3 " 01-" . aux0  $ ys)*(evalRhythmicity23 . mconcat . syllableDurations . map ( createSyllablesP . additionalF) . vecWords $ ys)])+{-# INLINE procBothFneg #-}
uniqueness-periods-vector-properties.cabal view
@@ -3,7 +3,7 @@ -- http://haskell.org/cabal/users-guide/  name:                uniqueness-periods-vector-properties-version:             0.5.1.0+version:             0.5.2.0 synopsis:            Metrices for the maximum element for the uniqueness-periods-vector packages family. description:         Metrices for the maximum element for the uniqueness-periods-vector packages family. Generalization of the DobutokO.Poetry.Norms and DobutokO.Poetry.Norms.Extended modules from dobutokO-poetry package. homepage:            https://hackage.haskell.org/package/uniqueness-periods-vector-properties