packages feed

dtw 0.9.2.0 → 1.0.0.0

raw patch · 2 files changed

+3/−14 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

dtw.cabal view
@@ -2,10 +2,10 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                dtw-version:             0.9.2.0+version:             1.0.0.0 synopsis:            (Fast) Dynamic Time Warping description:         This package implements dynamic time warping as described-                     here http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping&oldid=643501828+                     here <http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping> license:             MIT license-file:        LICENSE author:              Florian Hofmann@@ -48,14 +48,3 @@   ghc-options:         -O2 -Wall   hs-source-dirs:      src   default-language:    Haskell2010----executable glossaer---  main-is:             GlossAER.hs---  -- other-modules:       ---  -- other-extensions:    ---  build-depends:       base >=4.7 && <4.8,---                       aer,---                       kdtree---  ghc-options:         -O2 -Wall -fexcess-precision---  hs-source-dirs:      src---  default-language:    Haskell2010
src/Data/DTW.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE TypeFamilies #-}  -- | This module implements dynamic time warping as described here:--- http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping&oldid=643501828+-- <http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping> -- -- Additionally 'fastDtw' is implemented as described in the paper: -- "FastDTW: Toward Accurate Dynamic Time Warping in Linear Time and