1.分支限界法
Branch and bound method
After each branch, no further branches are made for those subsets whose boundaries exceed the known feasible solution values. In this way, many subsets of the solution (ie many nodes on the search tree) can be ignored, thus narrowing the search. This process continues until a feasible solution is found, the value of the feasible solution being no more than the bounds of any subset. Therefore, this algorithm can generally find the optimal solution.
The step of branching the problem into sub-problems and delimiting these sub-problems is called the branch and bound method.