blob: 286b2dbc3312812e256c617d84ff73b98bc275a1 (
plain)
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
|
name: examples
version: 0.19.0.0
synopsis: Example usage of the various hmatrix packages
homepage: https://github.com/albertoruiz/hmatrix
license: BSD3
license-file: LICENSE
author: Dominic Steinitz
maintainer: dominic@steinitz.org
copyright: Dominic Steinitz, Novadiscovery
category: Math
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable sundials
main-is: sundials.hs
build-depends: base >=4.10 && <4.11,
hmatrix,
hmatrix-sundials,
hmatrix-gsl
default-language: Haskell2010
executable butcherTableau
main-is: ButcherTableau.hs
build-depends: base >=4.10 && <4.11,
hmatrix,
hmatrix-sundials,
pretty
default-language: Haskell2010
executable vectorShow
main-is: VectorShow.hs
build-depends: base >=4.10 && <4.11,
hmatrix,
hmatrix-gsl
default-language: Haskell2010
|