set_col_nameSet the name of a column in the lp. int set_col_name(lprec *lp, int column, char *name); Return Value set_col_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 column The column for which the name must be set. Must be between 1 and the number of columns in the lp. name The name for the column. Remarks The set_col_name sets the name of the column. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, get_col_name, set_row_name, get_row_name |