-
Notifications
You must be signed in to change notification settings - Fork 1
/
herbrand-prolog.cabal
31 lines (29 loc) · 990 Bytes
/
herbrand-prolog.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
name: herbrand-prolog
version: 0.1.0.0
synopsis: A pseudo-Prolog that tries to answer queries by building the least Herbrand model.
-- description:
homepage: http://github.com/joom/herbrand-prolog
license: MIT
license-file: LICENSE
author: Joomy Korkut
maintainer: [email protected]
-- copyright:
category: Math
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Data.InfiniteSet
, Herbrand.HornClause
, Herbrand.Model
, Prolog.Parser
build-depends: base >= 4.7 && <5
, parsec
hs-source-dirs: src
default-language: Haskell2010
executable repl
main-is: Main.hs
build-depends: base >=4.7 && <4.8
, herbrand-prolog
hs-source-dirs: execs
default-language: Haskell2010