recSBX {ecr} | R Documentation |
Simulated Binary Crossover (SBX) recombinator.
Description
The Simulated Binary Crossover was first proposed by [1]. It i suited for
float representation only and creates two offspring. Given parents
the offspring are generated as
where
. This way
is assured.
Usage
recSBX(inds, eta = 5, p = 1, lower, upper)
Arguments
inds |
[ |
eta |
[ |
p |
[ |
lower |
[ |
upper |
[ |
Value
[ecr_recombinator
]
Note
This is the default recombination operator used in the NSGA-II EMOA (see nsga2
).
References
[1] Deb, K. and Agrawal, R. B. (1995). Simulated binary crossover for continuous search space. Complex Systems 9(2), 115-148.
See Also
Other recombinators:
recCrossover()
,
recIntermediate()
,
recOX()
,
recPMX()
,
recUnifCrossover()