packages feed

SmithNormalForm-0.1.0.0: SmithNormalForm.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack

name:           SmithNormalForm
version:        0.1.0.0
synopsis:       A lightweight Haskell implementation of Smith normal form over the integers.
description:    This package contains an implementation of Smith normal form for arbitrary matrices over the integers. In particular, it does not assume that the matrix is invertible or square.
category:       Math, LinearAlgebra
homepage:       https://notabug.org/bwh/SmithNormalForm
bug-reports:    https://notabug.org/bwh/SmithNormalForm/issues
author:         Brian Hwang
maintainer:     bhwang@math.cornell.edu
copyright:      2021 Brian Hwang
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type:                git
  location:            https://notabug.org/bwh/SmithNormalForm.git

library
  exposed-modules:
      Data.Matrix.SmithNormalForm
      Data.Matrix.SmithNormalForm.Internal
  other-modules:
      Paths_SmithNormalForm
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , matrix >=0.3.6 && <0.4
    , vector >=0.10 && <0.13
  default-language: Haskell2010