uniqueness-periods-vector-examples 0.14.2.0 → 0.14.3.0
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 +4/−0
- Lines/Main.hs +2/−2
- uniqueness-periods-vector-examples.cabal +1/−1
ChangeLog.md view
@@ -172,3 +172,7 @@ * Fourteenth version revised B. Fixed issue with the wrong output option for one of the columns of the propertiesText running output. Changed the dependency boundaries so that now it uses latest variants. Please, consider switching to the phonetic-languages-examples package instead because it provides the analogous functionality and shows better performance. This one is left for comparison purposes.++## 0.14.3.0 -- 2020-11-10++* Fourteenth version revised C. Fixed issue with the reverse order of the output for the rewritePoem executable.
Lines/Main.hs view
@@ -72,7 +72,7 @@ circle2 :: String -> String -> [String] -> [String] -> [String] circle2 xs choice yss xss | null xss = yss- | otherwise = circle2 (if null rs then [] else last rs) choice (ws:yss) tss+ | otherwise = circle2 (if null rs then [] else last rs) choice (yss `mappend` [ws]) tss where (!zss,!tss) = splitAt 1 xss !rs = words . concat $ zss !ws = if compare (length rs) 3 == LT then unwords (xs:rs) else lastFrom3 . headU2 . fst . get22 .@@ -82,7 +82,7 @@ circle2I :: String -> String -> [String] -> Int -> V.Vector Int -> Float -> Float -> [String] -> [String] circle2I xs choice yss numberI vI minE maxE xss | null xss = yss- | otherwise = circle2I (if null rs then [] else last rs) choice (ws:yss) numberI vI minE1 maxE1 tss+ | otherwise = circle2I (if null rs then [] else last rs) choice (yss `mappend` [ws]) numberI vI minE1 maxE1 tss where (!zss,!tss) = splitAt 1 xss !rs = words . concat $ zss !l3 = (subtract 3) . length $ rs
uniqueness-periods-vector-examples.cabal view
@@ -3,7 +3,7 @@ -- http://haskell.org/cabal/users-guide/ name: uniqueness-periods-vector-examples-version: 0.14.2.0+version: 0.14.3.0 synopsis: Usage examples for the uniqueness-periods-vector series of packages description: Usage examples for the uniqueness-periods-vector series of packages. Several executables are planned to demonstrate the libraries work. homepage: https://hackage.haskell.org/package/uniqueness-periods-vector-examples