get_upboGets the upper bound of a variable. REAL get_upbo(lprec *lp, int column); Return Value get_upbo returns the upper bound on the specified variable. If no bound
was set, it returns 1e24, the default upper bound. 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 number of the variable. It must be between 1 and the number of columns in the lp. Remarks The get_upbo function returns the upper bound on the variable identified by column. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, set_upbo, set_lowbo, get_lowbo, set_bounds |