set_row_nameSet the name of a constraint (row) in the lp. unsigned char set_row_name(lprec *lp, int row, char *new_name); Return Value set_row_name 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_mps, read_freemps, read_MPS, read_freeMPS, read_XLI row The row for which the name must be set. Must be between 0 and the number of rows in the lp. new_name The name for the row. Remarks The set_row_name sets the name of the row. Example
See Also make_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, get_row_name, get_origrow_name, set_col_name, get_col_name, get_origcol_name, get_nameindex |