-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathice.cabal
64 lines (50 loc) · 2.17 KB
/
ice.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
-- Initial ice -- Ibp ChoosEr.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: ice
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.2
synopsis: Choose a maximal linearly independent set of integration-by-parts type of equations.
-- A longer description of the package.
description: This program implements the algorithm described in the paper
\"Finding Linear Dependencies in Integration-By-Parts Equations:
A Monte Carlo Approach\"
license: GPL-3
license-file: LICENSE
author: Philipp Kant
maintainer: [email protected]
copyright: Copyright 2013 Philipp Kant
category: Math
build-type: Simple
cabal-version: >=1.8
executable ice
main-is: ice.hs
other-modules: Ice.Fp
, Ice.Gauss
, Ice.ParseIbp
, Ice.Types
ghc-options: -rtsopts -O2 -funbox-strict-fields
build-depends: base ==4.*
, attoparsec >= 0.10.0.0
, vector >= 0.10.0.0
, bytestring >= 0.10.0.0
, deepseq >= 1.3.0.0
, containers >= 0.5.0.0
, repa >= 3.2.0.0
, reflection >= 1.3.2
, MonadRandom >= 0.1.11
, tagged >= 0.7
, cmdargs >= 0.10.5
, time >= 1.4.0.0
, bmp >= 1.2.0.0
, mtl
, vector-th-unbox
, conduit-combinators
, conduit-extra
, hslogger
, ekg