-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactor.cabal
98 lines (94 loc) · 2.12 KB
/
factor.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: factor
version: 1.7
category: Number Theory
synopsis: Factoring integers and polynomials
license: MIT
license-file: LICENSE
cabal-version: >= 1.10
build-type: Simple
extra-source-files: README.md doc/ecm-example.txt doc/ecm-param.txt doc/ecm-profile.txt doc/factor-usage.txt doc/nfs-example.txt doc/nfs-memory.png doc/nfs-profile.txt doc/swinnerton-dyer.txt
author: Joe Leslie-Hurd <joe@gilith.com>
maintainer: Joe Leslie-Hurd <joe@gilith.com>
description:
This package contains a reference implementation library of
factoring algorithms for integers and univariate polynomials
Library
build-depends:
base >= 4.0 && < 5.0,
containers >= 0.5.7.1,
parsec >= 3.1,
pretty >= 1.1,
random >= 1.0.1.1,
time >= 1.6.0.1
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Factor,
Factor.Bz,
Factor.Ec,
Factor.Gaussian,
Factor.Gfpx,
Factor.Nfs,
Factor.Nfzw,
Factor.Prime,
Factor.Term,
Factor.Util,
Factor.Value,
Factor.Zx
executable factor
build-depends:
base >= 4.0 && < 5.0,
containers >= 0.5.7.1,
parsec >= 3.1,
pretty >= 1.1,
random >= 1.0.1.1,
time >= 1.6.0.1
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
main-is: Main.hs
other-modules:
Factor,
Factor.Bz,
Factor.Ec,
Factor.Gaussian,
Factor.Gfpx,
Factor.Nfs,
Factor.Nfzw,
Factor.Prime,
Factor.Term,
Factor.Util,
Factor.Value,
Factor.Zx,
Paths_factor
test-suite factor-test
type: exitcode-stdio-1.0
build-depends:
base >= 4.0 && < 5.0,
containers >= 0.5.7.1,
parsec >= 3.1,
pretty >= 1.1,
QuickCheck >= 2.4,
random >= 1.0.1.1,
time >= 1.6.0.1
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fno-warn-orphans
main-is: Test.hs
other-modules:
Factor,
Factor.Bz,
Factor.Ec,
Factor.Gaussian,
Factor.Gfpx,
Factor.Nfs,
Factor.Nfzw,
Factor.Prime,
Factor.Term,
Factor.Util,
Factor.Value,
Factor.Zx
source-repository head
type: git
location: git://github.com/gilith/factor.git