evolve 0.2.0

A generic, composable genetic algorithm framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "evolve"
version = "0.2.0"
edition = "2024"
description = "A generic, composable genetic algorithm framework for Rust"
license = "MIT"
repository = "https://github.com/MichaelDuPlessis/evolve"
readme = "README.md"
keywords = ["genetic-algorithm", "evolutionary", "optimization", "metaheuristic"]
categories = ["artificial-intelligence", "algorithms"]

[features]
parallel = ["dep:pooled"]

[dependencies]
rand = "0.10.0"
pooled = { version = "0.3", optional = true }