├── .gitignore ├── Makefile ├── README.md ├── markov.cpp └── markov.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.a 3 | *.o 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanEpstein/markov/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanEpstein/markov/HEAD/README.md -------------------------------------------------------------------------------- /markov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanEpstein/markov/HEAD/markov.cpp -------------------------------------------------------------------------------- /markov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanEpstein/markov/HEAD/markov.h --------------------------------------------------------------------------------