monad-markov: Markov process monad

[ control, library, mit ] [ Propose Tags ]

A monad transformer providing a monad in which computations have access to state and a probabilistic transition function. This can be used to model Markov chains.

A type class is provided with one operation, "nextState", which transitions to the next state.

The transformer is built on top of MonadRandom (https:/hackage.haskell.orgpackage/MonadRandom).


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0
Change log ChangeLog.md
Dependencies base (>=4.0 && <5), base-compat, MonadRandom (>=0.5), mtl, random, transformers [details]
License MIT
Copyright Arran D. Stewart 2018
Author Arran D. Stewart
Maintainer maintainer@arranstewart.info
Category Control
Home page https://github.com/arranstewart/monad-markov
Source repo head: git clone git@github.com:arranstewart/monad-markov.git
Uploaded by arran at 2018-06-29T13:25:22Z
Distributions NixOS:0.1.0.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 817 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for monad-markov-0.1.0.0

[back to package description]

monad-markov

A monad transformer providing a monad, MarkovT, in which computations have access to state and a probabilistic transition function. This can be used to model Markov processes. A type class, MonadMarkov, is provided with one operation, "nextState", which transitions to the next state.

The transformer is built on top of MonadRandom (https://hackage.haskell.org/package/MonadRandom).