| set_obj_boundSet initial "at least better than" guess for objective function. void set_obj_bound(lprec *lp, REAL obj_bound); Return Value set_obj_bound has no return value. 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 obj_bound The initial "at least better than" guess for objective function.Remarks The set_obj_bound function specifies the initial "at least better than"
						guess for objective function. This is only used in the branch-and-bound
						algorithm when integer variables exist in the model. All solutions with a worse
						objective value than this value are immediately rejected. This can result in
						faster solving times, but it can be difficult to predict what value to take for
						this bound. Also there is the chance that the found solution is not the most
						optimal one. Example See Also make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, get_obj_bound, , set_break_at_value, get_break_at_value set_mip_gap, get_mip_gap |