Crates.io | sliding_tree |
lib.rs | sliding_tree |
version | 0.2.0 |
source | src |
created_at | 2024-10-25 20:47:57.084344 |
updated_at | 2024-11-04 00:18:54.877233 |
description | A tree that grows from the leaves and recedes from the root. |
homepage | https://www.robinkay.uk/ |
repository | https://github.com/komadori/sliding_tree |
max_upload_size | |
id | 1423146 |
size | 69,734 |
This crate is a Rust library which provides a sliding tree structure that grows from the leaves and recedes from the root. It is intended to be suitable for implementing game tree search. It uses a queue of allocation buffers under the hood to manage memory.
[dependencies]
sliding-tree = "0.2"
An example demonstrating how to use the crate to implement Monte Carlo Tree
Search for a simple game is provided in tests/mcts.rs
.
This crate is licensed under the Apache License, Version 2.0 (see LICENCE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) or the MIT licence (see LICENCE-MIT or http://opensource.org/licenses/MIT), at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.