get_mip_gapReturns the MIP gap value. REAL get_mip_gap(lprec *lp); Return Value get_mip_gap returns the MIP gap value. 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 Remarks The get_mip_gap function returns the MIP gap that specifies a tolerance
for the branch and bound algorithm. This tolerance is the difference between
the best-found solution yet and the current solution. If the difference is
smaller than this tolerance then the solution (and all the sub-solutions) is
rejected. This can result in faster solving times, but results in a solution
which is not the perfect solution. So be careful with this tolerance. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, set_mip_gap, get_epsd, set_epsd, set_infinite, get_infinite, set_epsilon, get_epsilon, set_epsb, get_epsb, set_epsel, get_epsel, get_epspivot, set_epspivot, set_epsperturb, get_epsperturb |