devolve



template  preset(Alleles...)

Create the initial population using some  preset value.

Examples
import devolve.bstring;
auto ga = new BStringGA!(5, 50, fitness,
                         generator.preset!(0, 1, 0, 0, 1));
//An empty preset is equivalent to filling in all zeros
auto ga = new BStringGA!(5, 50, fitness,
                         generator.preset!());

auto  preset(BString)();




auto  random(BString)();

Generate a  random set of bits.

NOTE:
The size paramter will be inferred by the GA