-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathatrophy.cabal
68 lines (63 loc) · 1.64 KB
/
atrophy.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
cabal-version: 2.4
name: atrophy
version: 0.1.0.0
synopsis: Faster integer division and modulus operations
description:
Fast div/mod via arithmetic strength reduction.
Good compilers already perform this optimization for divisors that are known at compile time; this library enables this optimization for divisors that are only known at runtime.
license: MIT
license-file: LICENSE
author: Zachary Churchill <[email protected]>
maintainer: Zachary Churchill <[email protected]>
copyright: 2022 Zachary Churchill
category: Math
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/goolord/atrophy/
library
exposed-modules:
Atrophy
, Atrophy.LongDivision
, Atrophy.LongMultiplication
other-modules:
Atrophy.Internal
Atrophy.Internal.LongDivision
-- other-extensions:
ghc-options: -Wall -O2 -Wredundant-constraints
build-depends:
base >=4.10.0.0 && <5
, wide-word
, contiguous >= 0.6.0.0
hs-source-dirs: src
default-language: Haskell2010
test-suite atrophy-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends:
base >=4.10.0.0 && <5
, wide-word
, contiguous >= 0.6.0.0
, HUnit
, tasty
, QuickCheck
, quickcheck-classes
, tasty
, tasty-hunit
, tasty-quickcheck
, atrophy
benchmark atrophy-bench
type: exitcode-stdio-1.0
build-depends:
base >=4.10.0.0 && <5
, tasty
, tasty-bench
, deepseq
, atrophy
, random
ghc-options: -Wall -O2
default-language: Haskell2010
hs-source-dirs: bench
main-is: Main.hs