get_col_nameGets the name of a column in the lp. char *get_col_name(lprec *lp, int column); Return Value get_col_name returns the name of the specified column. A return value of
NULL 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 retrieved. Must be between 1 and the number of columns in the lp. Remarks The get_col_name returns the name of the column. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, set_col_name, set_row_name, get_row_name |