> I am writing a version of the "record_solution" function, defined in
> glpmip2.c, and I got confused; shouldn't the line
>         tree->best = lpx_get_obj_val(lp);
> be replaced by
>         tree->best = lpx_get_mip_val(lp);
> as we are dealing with MIPs?

The correct line is the following:

   tree->best = lpx_get_obj_val(lp);

because the best known MIP solution is optimal solution of LP
relaxation (which lp points to) corresponding to a node of the
b&b tree.



_______________________________________________
Help-glpk mailing list
Help-glpk@gnu.org
http://lists.gnu.org/mailman/listinfo/help-glpk

Reply via email to