del_columnRemove a column from the lp. int del_column(lprec *lp, int column); Return Value del_column 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 to delete. Must be between 1 and the number of columns in the lp. Remarks The del_column function deletes a column from the model. The column is
effectively deleted, so all columns after this column shift one left. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, add_column, str_add_column |