-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorProp.cabal
38 lines (37 loc) · 1.29 KB
/
ErrorProp.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
name: ErrorProp
version: 0.1.0.0
synopsis: error/uncertainty propagation
description: a work in progress
license: BSD3
license-file: LICENSE
author: Adam Vogt <[email protected]>
maintainer: Adam Vogt <[email protected]>
category: Math
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 8.10.4
library
exposed-modules: ErrorProp.MonteCarlo,
ErrorProp.Linearized,
ErrorProp.QuasiMC,
ErrorProp.QuasiMC.Cukier,
ErrorProp.Common
other-extensions: FlexibleContexts,
FlexibleInstances,
DefaultSignatures,
Rank2Types,
BangPatterns
build-depends: base,
mersenne-random,
containers,
vector,
xformat,
ad,
pretty,
compensated,
polynomial,
primes,
vector-space,
statistics,
free
default-language: Haskell2010