-
In my optimization use case, one of the objectives is maximization. Also, can you provide the normalization/preprocess function to be able easily used for MCDM and minimization in Pymoo? nF = (res.F - approx_ideal) / (approx_nadir - approx_ideal) i = decomp.do(nF, 1 / weights).argmin() Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The entire framework assumes minimization. So does MCDM. I recommend fixing the edge case by using an
|
Beta Was this translation helpful? Give feedback.
The entire framework assumes minimization. So does MCDM.
I recommend fixing the edge case by using an
eps
value (this is probably the most practical fix), e.g.