del_columnRemove a column from the lp. unsigned char 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, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI 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 resize_lp, make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, add_column, add_columnex, str_add_column |