Exemplo n.º 1
0
 public ParallelGeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : base(pSize, cRate, sf, rf)
 {
 }
Exemplo n.º 2
0
 public ParallelGeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf) :
     base(pSize, cRate, sf, rf)
 {
 }
Exemplo n.º 3
0
 public GeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : this(pSize, cRate)
 {
     Selection = sf;
     Reproduction = rf;
 }
Exemplo n.º 4
0
 public GeneticAlgorithm(int pSize, double cRate, SelectionFacade sf, ReproductionFacade rf)
     : this(pSize, cRate)
 {
     Selection    = sf;
     Reproduction = rf;
 }