Blended Multi-Objective functions & Combining Blended and Hierarchical Objectives
AnsweredCan you provide me with some example codes that implement the following objectives in Python Gurobi?
- Blended Multi-Objective
- Combining Blended and Hierarchical Objectives
I want to see some detailed examples from the instructions provided as follows. https://www.gurobi.com/documentation/9.5/refman/working_with_multiple_obje.html
-
Hi John,
Please check the multobj.py example that implements a set covering problem with four different objectives. The problem is an example of combining hierarchical and blended approaches to optimize various objectives.
Please have a look and then let us know if you have any followup questions.
Best regards,
Maliheh
0 -
Thank you so much for your answer. Based on this example, may I ask you what is the difference between implementation of strict hierarchical model and this one which is implementing "Combining hierarchical and blended model?"
0 -
Hi John,
Say you had objectives X, Y and Z. Then, by example:
Heirarchical:
Optimize X, then Y, then Z
Blended:
Optimize aX + bY + cZ (for scalars a,b,c)
Heirarchical + Blended
Optimize aX + bY, then Z
- Riley0
Please sign in to leave a comment.
Comments
3 comments