Ejemplo n.º 1
0
 @Override
 public double execute_double(ProgramChromosome c, int n, Object[] args) {
   int size = size();
   DescriptiveStatistics stats = new DescriptiveStatistics();
   for (int i = 0; i < size; i++) {
     stats.addValue(c.execute_double(n, i, args));
   }
   return stats.getSkewness();
 }