-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhneural.cabal
39 lines (35 loc) · 1.1 KB
/
hneural.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
name: hneural
version: 2009.12.1
license: BSD3
license-file: LICENSE
maintainer: Paolo Veronelli <[email protected]>
stability: unstable
category: AI
synopsis: A collection of tools for building neural nets.
description: Simple models for understanding neural networks
homepage: http://wiki.github.com/paolino/hneural
copyright: Copyright (c) 2009 Paolo Veronelli , Roberto Tazzoli
build-type: Simple
cabal-version: >=1.6
library
exposed-modules:
Data.Neural.Reservoir
Data.Neural.Lib
hs-source-dirs: .
ghc-options: -Wall
build-depends: base >= 4 && < 5,
containers >= 0.1 && < 1,
parallel >= 1.0 && < 2,
MonadRandom >= 0.1.4 && < 2,
random >= 1.0 && < 2,
array >= 0.2 && < 1
Executable reservoir
ghc-options: -Wall
Main-is: reservoir.hs
Build-Depends: base >= 3 && < 5,
simpleargs >= 0.1 && <2
Executable patterns
ghc-options: -Wall
Main-is: patterns.hs
Build-Depends: base >= 3 && < 5,
simpleargs >= 0.1 && <2