set_row_nameSet the name of a constraint (row) in the lp. int set_row_name(lprec *lp, int row, char *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, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS row The row for which the name must be set. Must be between 0 and the number of rows in the lp. name The name for the row. Remarks The set_row_name sets the name of the row. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, get_row_name, set_col_name, get_col_name |