コード例 #1
0
 public RouletteSelection()
 {
     _generator = ClassFactory.GetRandomGenertor();
 }
コード例 #2
0
 public HighestRankingSelection()
 {
     _generator = ClassFactory.GetRandomGenertor();
 }
コード例 #3
0
ファイル: OnePointCrossover.cs プロジェクト: VitaminLL/evco
 public OnePointCrossover()
 {
     _generator = ClassFactory.GetRandomGenertor();
 }
コード例 #4
0
 public ShiftOneSpaceMutation()
 {
     _generator = ClassFactory.GetRandomGenertor();
 }
コード例 #5
0
 public ShiftNRotateMutation()
 {
     _generator = ClassFactory.GetRandomGenertor();
 }
コード例 #6
0
ファイル: PopulationMember.cs プロジェクト: VitaminLL/evco
 public PopulationMember()
 {
     _generator = ClassFactory.GetRandomGenertor();
     this.initialisePopulation();
 }