How to code a multi-objective mixed integer linear (MILP) programming problem in MATLAB?
Afficher commentaires plus anciens
I have an MILP model with two objective functions, constarints, and upper and lower limits.
Any helpful examples of similar codes would be greatly appreciated.
Thanks.
3 commentaires
Do you truly mean multi-objective in the sense discussed here,
It is unclear how you would extend the notion of Pareto-optimality to integer programming.
Summer
le 17 Avr 2019
Suganthi D
le 23 Juin 2022
could you please send me the code of mixed integer linear programming, because i am using this algorithm.
code a multi-objective mixed integer linear (MILP)
Réponse acceptée
Plus de réponses (1)
Ashfaq Ahmed
le 5 Août 2020
0 votes
There is another approach other than weighted sum approach as been suggested above. In weighted sum approach usually we provide weights to the functions as input, which sometimes seems unfair. You can write your objective functions in fractions, like f1/f2. Now you have to decide if the frqction need to be mqximized or minimised by looking at the individual functions. For example min f1 and max f2. And in the fraxtion, when you minimise the numerator and at the same time maximise the denominator, it means overall fraction will be minimised. There is only one problem with this thing....the fractional programming in non linear and you cannot use the linear optimizers to solve it. But there are non linear solvers too. Otherwise there are methods to linearization the fractional programming.
2 commentaires
Paul Safier
le 25 Juil 2021
What if both of your objectives are to be minimized? For example I want to minimize (z1 + z2) and then minimize (z3 + z4).
Ashfaq Ahmed
le 25 Juil 2021
Hi Paul,
If you have two function f1 and f2 and you want to minimize both. In that case, if you use the fractionl programming approach. You write the fraction as f1/f2. It is better if you convert one of the function to maximum, like if you rewrite your fraction as -f1/f2, then it would be mean you want to maximize -f1 and you want to minimize f2.
Otherwise, even if you want to solve f1/f2, still there are multiple cases, For example,
- if f1 is not changing and f2 is minimizing, the fraction will be minimized.
- If f2 is not changing and f1 is minimizing, the fraction will be minimized.
- If both are minimizing, the fraction will be minimized. But it is conditional.
Therefore, the better solution is to put a minus sign with one of the function.
Catégories
En savoir plus sur Multiobjective Optimization dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!