Originally posted by: tavs
GLPK allows to set a row's bounds by use of function
void glp_set_row_bnds(glp_prob *lp, int i, int type, double lb, double ub);
if type is GLP_DB, i.e. a "double-bound", the routine sets the i-th row's lower and upper bounds to lb and ub respectively
In CPLEX's C API I found the functions
CPXchgrhs and
CPXchgrngval, but I couldn't figure out how to use them to achieve the same functionality. What should I do ?
TIA
#CPLEXOptimizers#DecisionOptimization