column_in_lpCheck if a column is already present in the lp. int column_in_lp(lprec *lp, REAL *column); Return Value column_in_lp returns TRUE (1) if the column is already in the lp and
FALSE (0) if not. 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 An array with row elements that are checked against the existing columns in the lp. Remarks The column_in_lp functions checks if a column is already present in the
lp. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, add_column, str_add_column, del_column |