Name: rungekutta2 Version: 1.0.3 homepage: https://github.com/ocramz/rungekutta Author: Uwe Hollerbach Maintainer: Marco Zocca (ocramz) Category: Numeric Synopsis: Explicit Runge-Kutta methods of various orders (fork of 'rungekutta') Description: This package contains a collection of explicit Runge-Kutta methods of various orders, some with fixed-size steps (no error estimate) and some intended for adaptive stepsize (ie, they include an error estimate). There are a couple of test programs which include some adaptive stepsize control, however there is not yet any such routine in the library itself. . This package started as a fork of 'rungekutta-1.0.2' (which had been dormant since 2009), with proper documentation and modern project structure. cabal-version: >= 1.10 Build-Type: Simple License: BSD3 License-File: LICENSE tested-with: GHC == 8.10.7 Library default-language: Haskell2010 Build-Depends: base < 5 Exposed-Modules: Numeric.RungeKutta executable testrk default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N hs-source-dirs: app main-is: TestRK.hs build-depends: base , rungekutta2 executable arenstorf default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N hs-source-dirs: app main-is: Arenstorf.hs build-depends: base , rungekutta2 executable volterra default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N hs-source-dirs: app main-is: Volterra.hs build-depends: base , rungekutta2 executable volterra2 default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N hs-source-dirs: app main-is: Volterra2.hs build-depends: base , rungekutta2