add_lag_con, str_add_lag_conAdd a Lagrangian constraint to the lp. The Lagrangian solver does not work. Do not use this call. unsigned char add_lag_con(lprec *lp, REAL *row, int con_type, REAL rhs); unsigned char str_add_lag_con(lprec *lp, char *row_string, int con_type, REAL rhs); Return Value add_lag_con and str_add_lag_con 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 row An array with column elements that contains the values of the row. row_string A string with column elements that contains the values of the row. Each element must be separated by space(s). con_type The type of the constraint. Can by any of the following values:
rhs The value of the right hand side (RHS). Remarks The Lagrangian solver does not work. Do not use this call. The add_lag_con, str_add_lag_con functions adds a Lagrangian row
to the model (at the end) and sets all values of the row at once. Example
See Also make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, add_constraint, add_constraintex, str_add_constraint, set_row, set_rowex, set_obj_fn, set_obj_fnex, str_set_obj_fn, set_obj, get_constr_type, del_constraint, add_column, add_columnex, str_add_column, set_column, set_columnex, get_column, get_columnex, get_row, get_rowex, get_mat, lag_solve, get_Lrows |