hierarchical-spectral-clustering 0.4.1.0 → 0.4.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hierarchical-spectral-clustering.cabal +1/−1
- src/Math/Clustering/Hierarchical/Spectral/Utility.hs +1/−1
hierarchical-spectral-clustering.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: hierarchical-spectral-clustering-version: 0.4.1.0+version: 0.4.1.1 license: GPL-3 license-file: LICENSE copyright: 2019 Gregory W. Schwartz
src/Math/Clustering/Hierarchical/Spectral/Utility.hs view
@@ -22,7 +22,7 @@ subsetVector xs = V.fromList . F.foldr' (\ !i !acc- -> ( fromMaybe (error "Out of bounds in subsetVector.")+ -> ( fromMaybe (error "Out of bounds in subsetVector (do the number of observations and features match the size of the matrix? Is the input format correct?).") $ xs V.!? i ) : acc ) []