-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspectral-clustering.cabal
38 lines (36 loc) · 1.37 KB
/
spectral-clustering.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: spectral-clustering
version: 0.3.2.2
synopsis: Library for spectral clustering.
description: Spectral clustering of a matrix.
homepage: http://github.com/GregorySchwartz/spectral-clustering#readme
license: GPL-3
license-file: LICENSE
author: Gregory W. Schwartz
maintainer: [email protected]
copyright: 2019 Gregory W. Schwartz
category: Math
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Math.Clustering.Spectral.Dense
, Math.Clustering.Spectral.Sparse
-- , Math.Clustering.Spectral.Eigen.FeatureMatrix
-- , Math.Clustering.Spectral.Eigen.AdjacencyMatrix
build-depends: base >= 4.7 && < 5
, containers
, clustering
-- , eigen == 3.3.4.1
, hmatrix
, hmatrix-svdlibc
, mwc-random
, safe
, sparse-linear-algebra
, statistics
, vector
ghc-options: -O2
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/GregorySchwartz/spectral-clustering