pub trait BinaryEncoded { }
Expand description

Marker trait for declaring a genetic::Genotype as binary encoded.

Implementations on Foreign Types

Implementation of binary encoded genetic::Genotype using Vec<bool>.

Implementation of binary encoded genetic::Genotype using fixedbistset::FixedBitSet.

Implementation of binary encoded genetic::Genotype using smallvec::SmallVec<Item = bool>.

Implementors