Current section
Files
Jump to
Current section
Files
README.md
# MCTS
[Monte Carlo tree search][mcts] (MCTS) for Elixir.
## Status
This is an early work in progress, and should be considered experimental,
incomplete, and unstable until v1.0.0, following [Semantic Versioning][semver].
All notable changes will be recorded in the [changelog](CHANGELOG.md).
## Installation
Add `mcts` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:mcts, "~> 0.1.0"}
]
end
```
## Documentation
Documentation can be found [here at Hex.pm][hexdocs] or generated from the
source code using `mix docs`.
## Development
The following Mix tasks are available to assist in development:
- `mix docs`
- `mix test`
- `mix coveralls`
- `mix credo`
## License
This project is released under the terms of the [MIT License](LICENSE.txt).
[mcts]: https://en.wikipedia.org/wiki/Monte_Carlo_tree_search
[semver]: https://semver.org/
[hexdocs]: https://hexdocs.pm/mcts/