Popularity
0.6
Stable
Activity
0.0
Stable
0
1
0
Monthly Downloads: 7
Programming language: Haskell
License: MIT License
Latest version: v0.1.0.0
monad-markov alternatives and similar packages
Based on the "monad" category.
Alternatively, view monad-markov alternatives based on common mentions on social networks and blogs.
-
monad-validate
DISCONTINUED. (NOTE: REPOSITORY MOVED TO NEW OWNER: https://github.com/lexi-lambda/monad-validate) A Haskell monad transformer library for data validation
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of monad-markov or a related project?
README
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).