get_sensitivity_obj, get_ptr_sensitivity_obj, get_sensitivity_objex, get_ptr_sensitivity_objexReturns the sensitivity of the objective function. int get_sensitivity_obj(lprec *lp, REAL *objfrom, REAL *objtill); int get_sensitivity_objex(lprec *lp, REAL *objfrom, REAL *objtill, REAL *objtillvalue); int get_ptr_sensitivity_obj(lprec *lp, REAL **ptr_objfrom, REAL **ptr_objtill); int get_ptr_sensitivity_objex(lprec *lp, REAL **ptr_objfrom, REAL **ptr_objtill, REAL *ptr_objtillvalue); Return Value get_sensitivity_obj, get_ptr_sensitivity_obj, get_sensitivity_objex, get_ptr_sensitivity_objex return TRUE (1) if the
operation was successful. A return value of FALSE (0) indicates an error. Parameters lp Pointer to previously created lp model. See return value of make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS objfrom An array that will contain the values of the lower limits on the objective function. ptr_objfrom The address of a pointer that will point to an array that will contain the values of the lower limits of the objective function. objtill An array that will contain the values of the upper limits of the objective function. ptr_objtill The address of a pointer that will point to an array that will contain the values of the upper limits of the objective function. objtillvalue An array that will contain the values of the variables at their upper limit. Only applicable when the value of the variable is 0 (rejected). ptr_objtillvalue The address of a pointer that will point to an array that will contain the values of the variables at their upper limit. Only applicable when the value of the variable is 0 (rejected). Remarks The get_sensitivity_obj, get_ptr_sensitivity_obj, get_sensitivity_objex, get_ptr_sensitivity_objex functions return
the sensitivity of the objective function. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, is_feasible, get_objective, get_variables, get_ptr_variables, get_primal_solution, get_ptr_primal_solution, get_work_solution, get_ptr_work_solution, get_sensitivity_rhs, get_ptr_sensitivity_rhs, |