/var/lib/ghc/package.conf.d/markov-chain-0.0.3.3.conf is in libghc-markov-chain-dev 0.0.3.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | name: markov-chain
version: 0.0.3.3
id: markov-chain-0.0.3.3-2e31914f54e42e0a56ddbdf3bf36f9a4
license: GPL
copyright:
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
stability:
homepage: http://code.haskell.org/~thielema/markov-chain/
package-url:
synopsis: Markov Chains for generating random sequences with a user definable behaviour.
description: This library can be used to generate random sequences of anything
with a behaviour that is adapted to some training data.
Input a marketing text or a speech and
recompose it to another arbitrary text of this sort.
Input a dictionary of person names and create new names.
Input a sequence of notes and get out a new melody.
Input a set of Haskell modules and generate ...
nice idea but the result will certainly have neither correct syntax nor types.
I think, it's a good thing about Haskell, that you cannot fool it so easily.
The idea is very simple:
The algorithm analyses your input\/training data
with respect to how likely an @a@ or @e@ follows the letters @r@ and @e@.
Then on recomposition it chooses subsequent letters randomly
according to the frequencies found in the training data.
This library is well suited for /bull-shit generators/.
category: Algorithms
author: Henning Thielemann <haskell@henning-thielemann.de>
exposed: True
exposed-modules: Data.MarkovChain
hidden-modules:
trusted: False
import-dirs: /usr/lib/haskell-packages/ghc/lib/markov-chain-0.0.3.3/ghc-7.6.3
library-dirs: /usr/lib/haskell-packages/ghc/lib/markov-chain-0.0.3.3/ghc-7.6.3
hs-libraries: HSmarkov-chain-0.0.3.3
extra-libraries:
extra-ghci-libraries:
include-dirs:
includes:
depends: base-4.6.0.1-8aa5d403c45ea59dcd2c39f123e27d57
containers-0.5.0.0-ab1dae9a94cd3cc84e7b2805636ebfa2
random-1.0.1.1-43fdc5da991685d8a0ec8cb553880cf8
transformers-0.3.0.0-ff2bb6ac67241ebb987351a3db564af0
hugs-options:
cc-options:
ld-options:
framework-dirs:
frameworks:
haddock-interfaces: /usr/lib/ghc-doc/haddock/markov-chain-0.0.3.3/markov-chain.haddock
haddock-html: /usr/share/doc/libghc-markov-chain-doc/html/
|