Пример #1
0
 public int execute_int(Chromosome c, int n, Object[] args) {
   return c.execute_int(n, 0, args) + c.execute_int(n, 1, args);
 }
Пример #2
0
 public Object execute_object(Chromosome c, int n, Object[] args) {
   int pos = c.execute_int(n, 1, args);
   return ((Compatible) c.execute_object(n, 0, args)).execute_remove(pos);
 }