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

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.

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/