canon-0.1.1.2: canon.cabal
-- Initial canon.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: canon
version: 0.1.1.2
synopsis: Arithmetic for Psychedelically Large Numbers
description: This library allows one to manipulate numbers of practically unlimited size by keeping them in factored "canonical" form, where possible. This original concept has been expanded to support arbitrary integral hyperoperations. 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: fws dot nyc 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.9 && < 1.0
, array >= 0.5.1.1 && < 0.6
, containers >= 0.5.7.1 && < 0.7
, random >= 1.0 && < 1.2
exposed-modules : Math.NumberTheory.Canon
Math.NumberTheory.Canon.Simple
Math.NumberTheory.Canon.AurifCyclo
Math.NumberTheory.Canon.SpecialFunctions
other-modules : Math.NumberTheory.Canon.Internals
Math.NumberTheory.Canon.Additive
ghc-options : -Wall
default-language: Haskell2010