Originally posted by: EdKlotz
>
> Hey, dear EdKlotz,
>
> I have another question to ask you.
> If I have a base case value for all the coefficients of objective function, and I want to know by varying within what limit, the optimal decision doesn't change. How should I change the codes?
>
> i mean if i know c1 and c2 and get an optimal decision in terms of x. Then i want to know within what range of change of c1 or c2, the optimal decision is the same.
>
> Thank you!
>
> Ulysses
getObjsa gives you the range of change of individual elements of the objective.
In other words, it tells you how much you can change a single element of the objective without losing optimality (i.e. dual feasibility). You can also view
this as performing parametric analysis on the objective with a unit vector.
In other words, the element in the unit vector with a 1.0 coefficient identifies
the individual objective coefficients that for which you want to assess the
maximum change without compromising optimality.
So, are you now asking how to calculate the amount you can change multiple
objectives at once (i.e. parametric analysis on the objective for an arbitrary
vector rather than a unit vector)?
#CPLEXOptimizers#DecisionOptimization