hnuts

No U-Turn Sampling in Haskell.
git clone git://git.jtobin.io/hnuts.git
Log | Files | Refs | README | LICENSE

hnuts.cabal (655B)


      1 name:                hnuts
      2 version:             1.0.0.0
      3 synopsis:            Automatic gradient-based sampling.
      4 homepage:            github.com/jtobin/hnuts
      5 license:             BSD3
      6 license-file:        LICENSE
      7 author:              Jared Tobin
      8 maintainer:          jared@jtobin.ca
      9 category:            Math
     10 build-type:          Simple
     11 extra-source-files:  README.md
     12 cabal-version:       >= 1.18
     13 
     14 library
     15   exposed-modules:
     16       Numeric.MCMC.NUTS
     17 
     18   other-extensions:
     19     ScopedTypeVariables
     20 
     21   build-depends:
     22       base
     23     , monad-loops
     24     , primitive
     25     , mwc-random
     26     , statistics
     27 
     28   hs-source-dirs:
     29     src
     30 
     31   default-language:
     32     Haskell2010
     33