is_break_at_firstReturns if the branch-and-bound algorithm stops at first found solution. unsigned char is_break_at_first(lprec *lp); Return Value is_break_at_first returns if the branch-and-bound algorithm stops at
first found solution. 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 Remarks The is_break_at_first function returns if the branch-and-bound algorithm
stops at the first found solution or not. Stopping at the first found solution
can be useful if you are only interested for a solution, but not necessarily
(and most probably) the most optimal solution. Example
See Also make_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, set_break_at_first, set_break_at_value, get_break_at_value, set_obj_bound, get_obj_bound, set_mip_gap, get_mip_gap |