-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifoldRNC.cabal
60 lines (58 loc) · 2.22 KB
/
manifoldRNC.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
name: manifoldRNC
version: 0.1.0.0
synopsis: My first venture into manifold learning in Haskell.
description: This package currently only contains an implementation
of "Fast Manifold Learning Based on Normal Coordinates" by Andres Brun et. al.
license: PublicDomain
license-file: LICENSE
author: Emmanuel Denloye-Ito
maintainer: [email protected]
copyright: 2015 Emmanuel Denloye-Ito
category: Math
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/emmanueldenloye/manifoldRNC.git
library
ghc-options: -O2 -Wall -threaded
hs-source-dirs: src
exposed-modules: GraphBuilder
InterpolationAlgorithms
Plots
Utils
build-depends: base >=4.8 && < 4.9
, Chart >=1.3 && <=1.5.4
, Chart-cairo >=1.3 && <=1.5.4
, cairo >= 0.12
, containers >= 0.4 && < 0.6
, deepseq >= 1.1 && < 1.5
, filepath >= 1.3 && < 1.5
, fgl >= 5.4 && < 5.6
, parallel >= 3.2.0.5 && < 3.2.1.0
, hmatrix >= 0.17 && < 0.18
, random >= 1.0 && < 1.2
, strict >= 0.3
, unix >= 2.6 && < 2.8
, vector < 0.10.9.3 || > 0.10.9.3 && < 0.10.12.0 || > 0.10.12.0
default-language: Haskell2010
executable manifoldRNC
main-is: Main.hs
build-depends: base
, manifoldRNC
, Chart
, Chart-cairo
, cairo
, containers
, deepseq
, fgl
, filepath
, hmatrix
, parallel
, random
, strict
, unix
, vector
ghc-options: -O2 -fllvm -threaded -Wall "-with-rtsopts=-N"
default-language: Haskell2010