declarative

DIY Markov Chains
Log | Files | Refs | README | LICENSE

commit a0b485cfca0421884ddf661599f6172eb43e3d22
parent d48159897b4d2fd9b079868afbed199c40441692
Author: Jared Tobin <jared@jtobin.ca>
Date:   Sat, 10 Oct 2015 00:15:54 +1300

Add source repo, test suite.

Diffstat:
Mdeclarative.cabal | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/declarative.cabal b/declarative.cabal @@ -43,6 +43,10 @@ description: . Check the test suite for example usage. +Source-repository head + Type: git + Location: http://github.com/jtobin/declarative.git + library default-language: Haskell2010 hs-source-dirs: lib @@ -60,3 +64,15 @@ library , speedy-slice >= 0.1.2 , transformers +Test-suite rosenbrock + type: exitcode-stdio-1.0 + hs-source-dirs: test + main-is: Rosenbrock.hs + default-language: Haskell2010 + ghc-options: + -rtsopts + build-depends: + base < 5 + , mwc-probability >= 1.0.1 + , declarative +