1516171819202122232425
{ @Override public Integer apply(final Genotype<BitGene> genotype) { final BitChromosome chromosome = (BitChromosome)genotype.getChromosome(); return chromosome.bitCount(); } } public class OnesCounting { public static void main(String[] args) {