packages feed

spectral-clustering-0.3.1.2: spectral-clustering.cabal

cabal-version: >=1.10
name: spectral-clustering
version: 0.3.1.2
license: GPL-3
license-file: LICENSE
copyright: 2019 Gregory W. Schwartz
maintainer: gsch@mail.med.upenn.edu
author: Gregory W. Schwartz
homepage: http://github.com/GregorySchwartz/spectral-clustering#readme
synopsis: Library for spectral clustering.
description:
    Spectral clustering of a matrix.
category: Math
build-type: Simple

source-repository head
    type: git
    location: https://github.com/GregorySchwartz/spectral-clustering

library
    exposed-modules:
        Math.Clustering.Spectral.Dense
        Math.Clustering.Spectral.Sparse
    hs-source-dirs: src
    default-language: Haskell2010
    ghc-options: -O2
    build-depends:
        base >=4.7 && <5,
        containers >=0.5.11.0,
        clustering >=0.4.0,
        hmatrix >=0.19.0.0,
        hmatrix-svdlibc >=0.5.0.1,
        mwc-random >=0.13.6.0,
        safe >=0.3.17,
        sparse-linear-algebra >=0.3.1,
        statistics >=0.14.0.2,
        vector >=0.12.0.1