canon-0.1.0.0: canon.cabal
-- Initial canon.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: canon
version: 0.1.0.0
synopsis: Massive Number Arithmetic
description: This library allows one to manipulate of practically unlimited by keeping them in factored "canonical" form.
For manipulating sums and differences, there is additional code to factor expressions of special forms.
homepage: https://github.com/grandpascorpion/canon
license: MIT
license-file: LICENSE
author: Frederick Schneider
maintainer: frederick dot schneider2011 at gmail dot com
-- copyright:
category: Math
build-type: Simple
extra-source-files: Changes, README.md
cabal-version: >=1.10
library
build-depends : base >= 4.9.1.0 && < 5
, arithmoi >= 0.6.0.1 && < 0.7
, polynomial >= 0.7.3 && < 0.8
, array >= 0.5.1.1 && < 0.6
, containers >= 0.5.7.1 && < 0.6
exposed-modules : Math.NumberTheory.Canon
Math.NumberTheory.Canon.Simple
Math.NumberTheory.Canon.AurifCyclo
Math.NumberTheory.Canon.Internals
-- other-modules : Math.NumberTheory.Canon.Internals
Math.NumberTheory.Canon.Additive
ghc-options : -O2 -Wall
ghc-prof-options : -O2 -auto
default-language: Haskell2010