-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumber-wall.cabal
67 lines (57 loc) · 1.79 KB
/
number-wall.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
cabal-version: 2.4
name: number-wall
version: 0.1.0.3
author: Owen Bechtel
maintainer: ombspring@gmail.com
category: Math, Algorithms, Graphics, Image
synopsis: Create number walls and save them as images
description:
A "number wall" is an infinite grid associated to some (bi-directional) sequence.
The "numbers" in the grid are usually either integers, or integers modulo some prime.
Number walls can be defined in terms of determinants, but can also be calculated
using a recursive algorithm.
.
Here are some cool images created using the functions in this package:
.
![number wall image collage](src/collage.png)
.
See [this video](https://www.youtube.com/watch?v=NO1_-qptr6c) for more
information and fun facts.
homepage: https://github.com/UnaryPlus/number-wall
bug-reports: https://github.com/UnaryPlus/number-wall/issues
license: MIT
license-file: LICENSE
extra-source-files: CHANGELOG.md, README.md, collage.png
source-repository head
type: git
location: https://github.com/UnaryPlus/number-wall.git
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -W
exposed-modules: NumberWall
build-depends:
base >= 4.14.1.0 && < 5,
chimera >= 0.3.2.0 && < 0.4,
mod >= 0.1.1.0 && < 0.2,
semirings >= 0.5.2 && < 0.8,
JuicyPixels >= 3.3 && < 3.4
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -W
main-is: Main.hs
build-depends:
base,
number-wall
benchmark bench
type: exitcode-stdio-1.0
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -W
main-is: Main.hs
build-depends:
base,
number-wall,
tasty-bench