canon-0.1.0.3: 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.3
synopsis: Massive Number Arithmetic
description: This library allows one to manipulate numbers of practically unlimited size by keeping them in factored "canonical" form,
where possible. For manipulating sums and differences, there is additional code to factor expressions of special forms.
Please refer to CanonManualTests.hs and the .odp presentation files for usage examples and background.
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
other-modules : Math.NumberTheory.Canon.Internals
Math.NumberTheory.Canon.Additive
ghc-options : -O2 -Wall
ghc-prof-options : -O2 -auto
default-language: Haskell2010