AMOCmutation {changepointGA} | R Documentation |
Jump mutation operator to produce offspring for AMOC problem
Description
In a certain probability, the mutation
genetic operator can be applied
to generate a new child
. In this AMOC mutation operator, the new child
changepoint location can be down via a "jump" method. The child changepoint
location will jump minDist
time units either to the left or right to
produce the changepoint location for the mutated child. The jump direction is
randomly decided with 0.5 probability.
Usage
AMOCmutation(
child,
p.range = NULL,
minDist,
Pchangepoint = NULL,
lmax = NULL,
mmax = NULL,
N = NULL
)
Arguments
child |
The child chromosome resulting from the |
p.range |
The default value is |
minDist |
The minimum length between two adjacent changepoints in
|
Pchangepoint |
An auxiliary argument is needed for |
lmax |
An auxiliary argument is needed for |
mmax |
An auxiliary argument is needed for |
N |
An auxiliary argument is needed for |
Value
The resulting child chromosome representation.