-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagate.cabal
More file actions
123 lines (119 loc) · 3.25 KB
/
Copy pathagate.cabal
File metadata and controls
123 lines (119 loc) · 3.25 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
cabal-version: 3.0
name: agate
version: 0.2.0.0
license: BSD-2-Clause
license-file: LICENSE
author: Obsidian Systems
maintainer: cale.gibbard@obsidian.systems
category: Math
build-type: Simple
extra-doc-files: CHANGELOG.md
common common
default-language: Haskell2010
default-extensions:
BlockArguments
DefaultSignatures
DeriveAnyClass
DeriveFunctor
DerivingStrategies
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
ImportQualifiedPost
InstanceSigs
LambdaCase
NamedFieldPuns
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
TypeOperators
ghc-options: -Wall
build-depends:
base,
bytestring,
colour,
containers,
diagrams-core,
diagrams-graphviz,
diagrams-lib,
diagrams-rasterific,
diagrams-svg,
extra,
filepath,
fgl,
graphviz,
HaskellForMaths,
lazyppl,
lens,
monoidal-containers,
svg-builder,
text,
library
import: common
exposed-modules:
Diagrams.AreaChart
Math.Agate.Algol
Math.Agate.ODE
Math.Agate.ODE.Polynomial
Math.Agate.ODE.RealValued
Math.Agate.ODE.Solver
Math.Agate.Diagrams.PetriNet
Math.Agate.PetriNet
Math.Agate.OgPoset.OgPoset
Math.Agate.Stochastic.MarkovKernel
Utils
hs-source-dirs: src
library agate-examples
import: common
exposed-modules:
Math.Agate.Examples.PetriNet.Colours
Math.Agate.Examples.PetriNet.Madrid
Math.Agate.Examples.PetriNet.Malthusian
Math.Agate.Examples.PetriNet.SCIR
Math.Agate.Examples.PetriNet.SEIR
Math.Agate.Examples.PetriNet.SEAIR
Math.Agate.Examples.PetriNet.SIR
Math.Agate.Examples.PetriNet.SIRD
Math.Agate.Examples.PetriNet.SIRS
Math.Agate.Examples.PetriNet.SIS
Math.Agate.Examples.PetriNet.SIWR
Math.Agate.Examples.PetriNet.LotkaVolterra
Math.Agate.Examples.ODE.LotkaVolterra
Math.Agate.Examples.ODE.Malthusian
Math.Agate.Examples.ODE.SCIR
Math.Agate.Examples.ODE.SEIR
Math.Agate.Examples.ODE.SEAIR
Math.Agate.Examples.ODE.SIR
Math.Agate.Examples.ODE.SIRD
Math.Agate.Examples.ODE.SIRS
Math.Agate.Examples.ODE.SIS
Math.Agate.Examples.ODE.SIWR
Math.Agate.Examples.ODE.Exponential
Math.Agate.Examples.ODE.Pendulum
Math.Agate.Examples.ODE.Rossler
build-depends: agate
hs-source-dirs: examples
test-suite agate-test
import: common
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
TestUtils,
Tests.ODE.Solver,
Tests.PetriNet,
Tests.OgPoset.OgPosetSpec,
Tests.Stochastic.Charts,
Tests.Stochastic.Convergence,
Tests.Stochastic.MarkovKernel,
TestUtils,
build-depends:
agate,
agate-examples,
random,
tasty,
tasty-quickcheck,
tasty-golden,
tasty-hunit,