public ParallelGeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : base(pSize, cRate, sf, rf)
 {
 }
Exemple #2
0
 public ParallelGeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf) :
     base(pSize, cRate, sf, rf)
 {
 }
Exemple #3
0
 public GeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : this(pSize, cRate)
 {
     Selection = sf;
     Reproduction = rf;
 }
 public GeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : this(pSize, cRate)
 {
     Selection    = sf;
     Reproduction = rf;
 }