meiosis 0.1.0

An evolutionary algorithm library with as many compile time checks as possible.
Documentation
/// [`Gene`] and related implementations for [`core::bool`].
mod bool;
/// [`Gene`] and related implementations for [`core::char`].
mod char;
/// [`Gene`] and related implementations for primitive integers.
mod integers;

/// This trait is used to describe singular genes that make up sequences.
///
/// At the moment it is simply a marker trait.
pub trait Gene {}