generate_weights {MOEADr} | R Documentation |
Calculate weight vectors
Description
Calculates weight vectors for the MOEADr package
Usage
generate_weights(decomp, m, ...)
Arguments
decomp |
List containing the decomposition method parameters. See
|
m |
Number of objectives ( |
... |
other parameters (included for compatibility with generic call) |
Details
This routine calculates the weight vectors for the MOEA/D. The
list of available methods for generating the weights, as well as information
about their specific parameters, can be generated using
get_decomposition_methods()
.
Value
Weight matrix W
References
F. Campelo, L.S. Batista, C. Aranha (2020): The MOEADr Package: A
Component-Based Framework for Multiobjective Evolutionary Algorithms Based on
Decomposition. Journal of Statistical Software doi:10.18637/jss.v092.i06
Examples
decomp <- list(name = "sld", H = 99)
W <- generate_weights(decomp, m = 2)
[Package MOEADr version 1.1.3 Index]