An open API service indexing awesome lists of open source software.

https://github.com/yeeking/markovmodelcpp

Implementation of a multi-order markov model in clean std C++
https://github.com/yeeking/markovmodelcpp

Last synced: 8 months ago
JSON representation

Implementation of a multi-order markov model in clean std C++

Awesome Lists containing this project

README

          

# MarkovModelCPP

Implementation of a markov model in C++.

Useful for musical applications and such, in case you don't like
neural networks :)

Check out the MarkovTests.cpp file:

```
g++ MarkovTest.cpp MarkovChain.cpp MarkovManager.cpp -o markovtest
./markovtest
```

You can interact with the markovmanager for a simple high level interface,
or with the markovchain directly.

MIT License.