├── .editorconfig ├── .github └── workflows │ └── crystal.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── shard.yml ├── spec ├── Chain_spec.cr ├── README_spec.cr ├── TransitionMatrix_spec.cr ├── TransitionTable_spec.cr ├── markov_spec.cr └── spec_helper.cr └── src ├── markov.cr └── markov ├── chain.cr ├── exceptions.cr ├── transition_matrix.cr ├── transition_table.cr └── version.cr /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/crystal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/.github/workflows/crystal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/Chain_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/spec/Chain_spec.cr -------------------------------------------------------------------------------- /spec/README_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/spec/README_spec.cr -------------------------------------------------------------------------------- /spec/TransitionMatrix_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/spec/TransitionMatrix_spec.cr -------------------------------------------------------------------------------- /spec/TransitionTable_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/spec/TransitionTable_spec.cr -------------------------------------------------------------------------------- /spec/markov_spec.cr: -------------------------------------------------------------------------------- 1 | require "./spec_helper" 2 | 3 | describe Markov do 4 | end 5 | -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/markov.cr: -------------------------------------------------------------------------------- 1 | require "./markov/*" 2 | -------------------------------------------------------------------------------- /src/markov/chain.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/src/markov/chain.cr -------------------------------------------------------------------------------- /src/markov/exceptions.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/src/markov/exceptions.cr -------------------------------------------------------------------------------- /src/markov/transition_matrix.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/src/markov/transition_matrix.cr -------------------------------------------------------------------------------- /src/markov/transition_table.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/markov/HEAD/src/markov/transition_table.cr -------------------------------------------------------------------------------- /src/markov/version.cr: -------------------------------------------------------------------------------- 1 | # :nodoc: 2 | module Markov::Crystal 3 | VERSION = "0.1.1" 4 | end 5 | --------------------------------------------------------------------------------