-
Notifications
You must be signed in to change notification settings - Fork 1
/
Akarui.cabal
84 lines (81 loc) · 2.02 KB
/
Akarui.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cabal-version: 2.4
name: Akarui
version: 0.2.0.0
synopsis: Hybrid logic + probabilistic machine learning library
license: Apache-2.0
license-file: LICENSE.md
author: Philippe Desjardins-Proulx <[email protected]>
maintainer: Philippe Desjardins-Proulx <[email protected]>
category: AI, Machine Learning, Logic, Statistics
build-type: Simple
description:
A research library for ideas at the frontier of logic, probability, and fuzziness.
library
default-language: Haskell2010
ghc-options: -O2 -Wall -fno-warn-orphans
default-extensions:
OverloadedStrings
Strict
StrictData
exposed-modules:
Akarui.Fmt
Akarui.ShowTxt
Akarui.Network
Akarui.FOL.Formula
Akarui.FOL.FOL
Akarui.FOL.Predicate
Akarui.FOL.Term
Akarui.FOL.Symbols
Akarui.FOL.BinT
Akarui.FOL.QuanT
Akarui.FOL.PrettyPrint
Akarui.FOL.FormulaSet
Akarui.FOL.MarkovLogic
Akarui.FOL.WalkSAT
Akarui.MVL.Truth
Akarui.MVL.Fuzzy
Akarui.MVL.Fuzzy2
Akarui.MVL.FuzzySet
Akarui.MVL.FuzzyLogic
Akarui.Parser.Core
Akarui.Parser.FOL
Akarui.Parser.Term
Akarui.Parser.FuzzySet
Akarui.Parser.LogicOps
Akarui.Parser.Probability
Akarui.Parser.Numbers
Akarui.Parser.Bool
other-modules:
Akarui.Text
Akarui.Utils
build-depends:
base >= 4.12 && < 4.15,
containers,
parsec >= 3.1.2,
text,
transformers,
random,
accelerate == 1.3.0.0
test-suite tests
default-language: Haskell2010
-- Supress orphan warnings to allow 'Arbitrary' instance def:
ghc-options: -Wall -fno-warn-orphans
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: Properties.hs
other-modules:
FOLSpec
TermSpec
PredicateSpec
TextGen
build-depends:
base >= 4.12 && < 4.15,
containers,
QuickCheck >= 2.7,
test-framework-quickcheck2,
text,
Akarui,
random
source-repository head
type: git
location: git://github.com/PhDP/Akarui.git