-
Notifications
You must be signed in to change notification settings - Fork 3
/
HaVSA.cabal
executable file
·52 lines (44 loc) · 1.78 KB
/
HaVSA.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
-- cabal configure --prefix=$HOME --user
-- cabal build
name: HaVSA
version: 0.1.0.2
synopsis: An implementation of the Version Space Algebra learning framework.
description: HaVSA (Have-Saa) is a Haskell implementation of the Version Space
Algebra Machine Learning technique described by Tessa Lau. The
canonical description is in:
.
Tessa Lau, Steven Wolfman, Pedro Domingos, and Daniel S. Weld,
Programming by Demonstration using Version Space Algebra,
Machine Learning, 2003. (http://tlau.org/research/papers/mlj01-draft.pdf)
category: AI
license: BSD3
License-file: LICENSE
author: Rogan Creswick
maintainer: [email protected]
Cabal-Version: >=1.8.0.6
build-type: Simple
Library
Build-depends: base >= 4 && < 6,
logict >= 0.4.2 && < 0.5
Exposed-modules: AI.VersionSpaces
Other-modules: AI.Examples,
AI.LogicHelpers
ghc-options: -Wall
hs-source-dirs: src
Executable tests
Main-Is: Main.hs
hs-source-dirs: tests,
src
Other-modules: AI.Tests,
AI.VersionSpaceTests
Build-Depends: base >= 4 && < 6,
logict >= 0.4.2 && < 0.5,
QuickCheck >= 1.1 && < 2,
HUnit >= 1.2.2 && < 1.2.3,
test-framework >= 0.3.3 && < 0.4,
test-framework-quickcheck >= 0.2.7 && < 0.3,
test-framework-hunit >= 0.2.6 && < 0.3
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/creswick/HaVSA.git