-
Notifications
You must be signed in to change notification settings - Fork 1
/
haltavista.cabal
46 lines (43 loc) · 1.11 KB
/
haltavista.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
Name: haltavista
Version: 0.1
Synopsis: looks for functions given a set of example input/outputs
Stability: alpha
Description:
Looks for functions in the local hoogle library given a set of example input/outputs.
Requires hoogle.
.
Usage:
.
> ~$ haltavista
> input_1_1 ... input_1_n output_1
> ...
> input_m_1 ... input_m_n output_m
> <EOF>
.
Example usage:
.
> ~$ haltavista
> 1 1 2
> 1 2 3
> <EOF>
>
> Prelude (+)
.
See README.md for more examples.
License: GPL-2
License-file: LICENSE
Author: Paul Brauner
Jun Inoue
Maintainer: [email protected]
Copyright: Paul Brauner and Jun Inoue
Category: Development
Build-type: Simple
Extra-source-files: README.md
Cabal-version: >=1.4
Executable haltavista
Main-is: Main.hs
Build-depends: base >= 4 && <5, hint >= 0.3.2.3, process >= 1.0.1.3
Other-modules: HaltaVista.Types
HaltaVista.TypeInference
HaltaVista.Hoogle
HaltaVista.Match