1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
cabal-version: >= 1.6
build-type: Simple
name: random-shuffle
version: 0.0.4
license: BSD3
license-file: LICENSE
category: System
author: Oleg Kiselyov, Manlio Perillo, Andras Slemmer
maintainer: Manlio Perillo <manlio.perillo@gmail.com>
copyright: Oleg Kiselyov 2001
Manlio Perillo 2009
synopsis: Random shuffle implementation.
description:
Random shuffle implementation, on immutable lists.
Based on `perfect shuffle' implementation by Oleg Kiselyov,
available on http://okmij.org/ftp/Haskell/perfect-shuffle.txt
stability: Beta
library
build-depends: base < 5, random, MonadRandom
exposed-modules: System.Random.Shuffle
hs-source-dirs: src
ghc-options: -Wall
|