コード例 #1
0
 public ParallelGeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : base(pSize, cRate, sf, rf)
 {
 }
コード例 #2
0
 public ParallelGeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf) :
     base(pSize, cRate, sf, rf)
 {
 }
コード例 #3
0
ファイル: GeneticAlgorithm.cs プロジェクト: grepory/Georgia
 public GeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : this(pSize, cRate)
 {
     Selection = sf;
     Reproduction = rf;
 }
コード例 #4
0
 public GeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : this(pSize, cRate)
 {
     Selection    = sf;
     Reproduction = rf;
 }