AMOCcrossover {changepointGA} | R Documentation |
Average crossover operator to produce offspring for AMOC problem
Description
In this crossover operator designed for AMOC problem, the new child is
produced by taking the average of the changepoint locations from dad
and mom
and round to an integer. Note, every chromosome has at most
one candidate changepoint location.
Usage
AMOCcrossover(mom, dad, p.range = NULL, minDist, lmax, N)
Arguments
mom |
Among two selected individuals, |
dad |
Among two selected individuals, |
p.range |
The default value is |
minDist |
The minimum length between two adjacent changepoints. |
lmax |
The maximum possible length of the chromosome representation. |
N |
The length of time series. |
Value
The child chromosome that produced from mom
and dad
for
next generation.