Ejemplo n.º 1
0
 public GeneticAlgorithmRecuit(RecuitSimule problem,
                               int populationSize,
                               int maxSteps,
                               double mutationChance,
                               int elitism  = 0,
                               int newBlood = 0) :
     base(populationSize, maxSteps, mutationChance, elitism, newBlood) //Super constructor
 {
     this.problem         = problem;
     this.problem.Verbose = false;
 }
Ejemplo n.º 2
0
 public GeneticAlgorithmRecuit(RecuitSimule problem)
 {
     this.problem = problem;
 }