I use blend alpha crossover operator for a genetic algorithm (GA), but I encountered a problem as follows:
The chromosomes have the form: (parent1, parent2, parent3) The values allowed for parent1, parent2, parent3 are in the range [0,1].
If you apply alpha blend crossover operator, the value of chromosomes can be outside the range [0,1] because this operator will expand the search space of GA. In this case, what can I do to ensure that the range of values of the parameters?