set_rh_rangeSet the range on a constraint. unsigned char set_rh_range(lprec *lp, int row, REAL deltavalue); Return Value set_rh_range returns 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, read_lp, read_LP, read_lpt, read_LPT, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI row The row number of the constraint on which the range must be set. It must be between 1 and the number of rows in the lp. deltavalue The range on the constraint. Remarks The set_rh_range function sets a range on the constraint (row) identified
by row. Example
See Also make_lp, read_lp, read_LP, read_lpt, read_LPT, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, get_rh_range |