forked from fizruk/free-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
free-agent.cabal
48 lines (45 loc) · 1.79 KB
/
free-agent.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
Name: free-agent
Version: 0.1.0
Author: Nickolay Kudasov<[email protected]>
Maintainer: Nickolay Kudasov<[email protected]>
Homepage: https://github.com/fizruk/free-agent
Bug-Reports: https://github.com/fizruk/free-agent/issues
License: BSD3
License-File: LICENSE
Synopsis: Multi agent systems based on free monads.
Description:
This package provides a general framework for multi agent systems.
Agent-environment interface is implemented using free monads.
Cabal-Version: >= 1.10
Build-Type: Simple
Stability: experimental
Category: Control
Library
Default-Language: Haskell2010
HS-Source-Dirs: src
GHC-Options: -Wall
Exposed-Modules: Control.Agent.Free
-- Algorithms
Control.Agent.Free.Algorithms.ABT
-- Environments
Control.Agent.Free.Environments.STM
-- Interfaces
Control.Agent.Free.Interfaces
Control.Agent.Free.Interfaces.SendRecv
Build-Depends: base >= 4 && < 5
, free >= 4.2
, transformers >= 0.3
, mtl >= 2.1
, containers >= 0.5
, stm >= 2.4
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test
Ghc-Options: -Wall
Main-Is: Spec.hs
Build-Depends: base
, hspec
Source-Repository head
Type: git
Location: https://github.com/fizruk/free-agent.git