chromosome 0.3.0

Genetic algorithm tools library
Documentation
# Chromosome

[![CI](https://github.com/burbokop/chromosome/actions/workflows/ci.yml/badge.svg)](https://github.com/burbokop/chromosome/actions/workflows/ci.yml)
[![Crate](https://img.shields.io/crates/v/chromosome.svg)](https://crates.io/crates/chromosome)
[![API](https://docs.rs/chromosome/badge.svg)](https://docs.rs/chromosome)

Genetic algorithms tools library which provides basic utilities such as mutation and recombination and can be used in `no_std` crates with `alloc` feature

Documentation:
-   [API reference (docs.rs)]https://docs.rs/chromosome

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
chromosome = "0.3.0"
```

## Example
[Diophantus equation](https://github.com/burbokop/chromosome/blob/master/tests/diophantus_equation.rs)