sampling-0.1.1: sampling.cabal
name: sampling
version: 0.1.1
synopsis: Sample values from collections.
homepage: https://github.com/jtobin/sampling
license: MIT
license-file: LICENSE
author: Jared Tobin
maintainer: jared@jtobin.ca
category: Math
build-type: Simple
cabal-version: >=1.10
description:
Basic sampling tools.
.
Exports variations on two simple functions for sampling from arbitrary
'Foldable' collections:
.
* 'sample', for sampling without replacement
.
* 'resample', for sampling with replacement (i.e., a bootstrap)
Source-repository head
Type: git
Location: http://github.com/jtobin/sampling.git
library
default-language: Haskell2010
hs-source-dirs: lib
ghc-options:
-Wall
other-modules:
Numeric.Sampling.Internal
exposed-modules:
Numeric.Sampling
build-depends:
base < 5
, foldl
, mwc-random
, primitive
, vector
executable sampling-test
hs-source-dirs: src
Main-is: Main.hs
default-language: Haskell2010
ghc-options:
-Wall -O2
build-depends:
base
, sampling
benchmark bench-sampling
type: exitcode-stdio-1.0
hs-source-dirs: bench
Main-is: Main.hs
default-language: Haskell2010
ghc-options:
-Wall -O2
build-depends:
base
, criterion
, sampling