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