What does the index property in setObjectiveN do when it is set to 0?
AnsweredsetObjectiveN has a property called "index". The documentation mentions that, for index=0, "this routine will change the primary optimization objective.". What does that mean? Which "routine" does the documentation refer to? Moreover, what does "will change the primary optimization objective" mean? Isn't the primary optimization objective determined by the "priority" property?
-
Hi Tomas,
You can add an objective via the
setObjective
method. This is then the primary objective. You can add multiple objectives using thesetObjectiveN
method. If an objective was already set with thesetObjective
method thensetObjectiveN
with index=0 will change this primary objective. See also Specifying Multiple Objectives (gurobi.com)
Also when you change the number of multiple objectives with the parameter NumObj, the objectives are kept according to their indices. For example, if you set NumObj=1, the objective with index=0 is kept.Best regards,
Marika0
Please sign in to leave a comment.
Comments
1 comment