https://github.com/xtagon/mcts
Monte Carlo tree search (MCTS) for Elixir.
https://github.com/xtagon/mcts
ai elixir elixir-lang elixir-lib elixir-library game-ai graph-algorithms mcts mcts-algorithm mcts-implementations monte-carlo-tree-search tree-search
Last synced: 14 days ago
JSON representation
Monte Carlo tree search (MCTS) for Elixir.
- Host: GitHub
- URL: https://github.com/xtagon/mcts
- Owner: xtagon
- License: mit
- Created: 2020-09-06T21:45:33.000Z (almost 6 years ago)
- Default Branch: edge
- Last Pushed: 2021-02-14T18:03:15.000Z (over 5 years ago)
- Last Synced: 2026-04-20T02:03:30.530Z (3 months ago)
- Topics: ai, elixir, elixir-lang, elixir-lib, elixir-library, game-ai, graph-algorithms, mcts, mcts-algorithm, mcts-implementations, monte-carlo-tree-search, tree-search
- Language: Elixir
- Homepage: https://hexdocs.pm/mcts/
- Size: 36.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# 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/