mutPolynomial {ecr} | R Documentation |
Polynomial mutation.
Description
Performs an polynomial mutation as used in the SMS-EMOA algorithm. Polynomial mutation tries to simulate the distribution of the offspring of binary-encoded bit flip mutations based on real-valued decision variables. Polynomial mutation favors offspring nearer to the parent.
Usage
mutPolynomial(ind, p = 0.2, eta = 10, lower, upper)
Arguments
ind |
[ |
p |
[ |
eta |
[ |
lower |
[ |
upper |
[ |
Value
[numeric
]
References
[1] Deb, Kalyanmoy & Goyal, Mayank. (1999). A Combined Genetic Adaptive Search (GeneAS) for Engineering Design. Computer Science and Informatics. 26. Retrieved from http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.27.767&rep=rep1&type=pdf
See Also
Other mutators:
mutBitflip()
,
mutGauss()
,
mutInsertion()
,
mutInversion()
,
mutJump()
,
mutScramble()
,
mutSwap()
,
mutUniform()