get_lowboGets the lower bound of a variable. REAL get_lowbo(lprec *lp, int column); Return Value get_lowbo returns the lower bound on the specified variable. If no bound
was set, it returns 0, the default lower bound. Parameters lp Pointer to previously created lp model. See return value of make_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI column The column number of the variable. It must be between 1 and the number of columns in the lp. Remarks The get_lowbo function returns the lower bound on the variable identified by column. Example
See Also make_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, set_lowbo, set_upbo, get_upbo, set_bounds, set_free, is_free, is_negative |