packages feed

modularity-0.2.1.0: modularity.cabal

cabal-version: >=1.10
name: modularity
version: 0.2.1.0
license: GPL-3
license-file: LICENSE
copyright: 2019 Gregory W. Schwartz
maintainer: gsch@pennmedicine.upenn.edu
author: Gregory W. Schwartz
homepage: http://github.com/GregorySchwartz/modularity#readme
synopsis: Find the modularity of a network.
description:
    Report Q, the Newman-Girvan modularity of an adjacency matrix.
category: Bioinformatics
build-type: Simple

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

library
    exposed-modules:
        Math.Modularity.Dense
        Math.Modularity.Sparse
        Math.Modularity.Types
        Math.Modularity.Eigen.Sparse
    hs-source-dirs: src
    default-language: Haskell2010
    ghc-options: -O2
    build-depends:
        base >=4.7 && <5,
        eigen ==3.3.4.1,
        hmatrix >=0.19.0.0,
        sparse-linear-algebra >=0.3.1,
        spectral-clustering >=0.2.2.0,
        vector >=0.12.0.1