00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00010 namespace GEP.Core.Common.GeneticOperators.GenotypeSelection 00011 { 00020 public interface GenotypeSelection 00021 { 00028 int[][] Select(Population population); 00029 00040 int[][] Select(ref int selectionStartIndex, ref int selectionEndIndex, 00041 Population population); 00042 } 00043 }