-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpell.cabal
54 lines (49 loc) · 2.03 KB
/
pell.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- Initial pell.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: pell
version: 0.1.3.0
synopsis: Package to solve the Generalized Pell Equation.
description: Finds all solutions of the generalized Pell Equation.
homepage: https://github.com/brunjlar/pell
license: MIT
license-file: LICENSE
author: Lars Bruenjes
maintainer: [email protected]
copyright: (c) 2016 by Dr. Lars Brünjes
category: Math, Algorithms, Number Theory
build-type: Simple
extra-source-files: README.md
cabal-version: 1.20
library
exposed-modules: Math.NumberTheory.Pell
, Math.NumberTheory.Moduli.SquareRoots
other-modules: Math.NumberTheory.Pell.PQa
build-depends: base >= 4.7 && < 5
, arithmoi >= 0.8
, containers
default-language: Haskell2010
Test-Suite test-pell
type: detailed-0.9
test-module: Math.NumberTheory.Pell.Test
other-modules: Math.NumberTheory.Moduli.SquareRoots
, Math.NumberTheory.Moduli.SquareRoots.Test
, Math.NumberTheory.Pell
, Math.NumberTheory.Pell.PQa
, Math.NumberTheory.Pell.Test.Reduced
, Math.NumberTheory.Pell.Test.Solve
, Math.NumberTheory.Pell.Test.Utils
build-depends: base >= 4.7 && <5
, arithmoi >= 0.8
, containers
, QuickCheck >= 2.8
, primes
, Cabal >= 1.20.0
, cabal-test-quickcheck >= 0.1 && <0.2
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/brunjlar/pell
source-repository this
type: git
location: https://github.com/brunjlar/pell
tag: 0.1.3.0