name: numerical-analysis version: 0.0.0 cabal-version: >= 1.8 author: Michael Orlitzky maintainer: Michael Orlitzky license: GPL-3 license-file: doc/LICENSE bug-reports: mailto:michael@orlitzky.com build-type: Simple category: Text synopsis: A library of numerical analysis functions. description: Haskell implementations of algorithms from numerical analysis. Includes fixed arbitrary-length vectors and arbitrary-precision real numbers where possible. data-files: makefile library exposed-modules: FEM.R1 Integration.Gaussian, Integration.Simpson, Integration.Trapezoid, Linear.Iteration, Linear.Matrix, Linear.QR, Linear.System, Linear.Vector, Misc, Naturals, Normed, ODE.IVP, Piecewise, Polynomials.Orthogonal, Roots.Simple, Roots.Fast build-depends: base >= 3 && < 5, fixed-vector == 0.6.*, numbers == 3000.2.*, numeric-prelude == 0.4.* hs-source-dirs: src/ ghc-options: -Wall -fwarn-hi-shadowing -fwarn-missing-signatures -fwarn-name-shadowing -fwarn-orphans -fwarn-type-defaults -fwarn-tabs -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction -fwarn-unused-do-bind -rtsopts -threaded -O2 -optc-O3 -optc-march=native test-suite doctests type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Doctests.hs build-depends: base >= 3 && < 5, -- Additional test dependencies. doctest == 0.9.*, filemanip == 0.3.6.* -- It's not entirely clear to me why I have to reproduce all of this. ghc-options: -rtsopts -threaded -funbox-strict-fields -fexcess-precision -fno-spec-constr-count -O2 -optc-O3 -optc-march=native source-repository head type: git location: http://michael.orlitzky.com/git/numerical-analysis.git branch: master