Jump to content

MCS algorithm

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Najko32 (talk | contribs) at 15:04, 6 August 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Multilevel Coordinate Search (MCS) is an efficient algorithm for bound constrained global optimization using function values only.

To do so, the n-dimensional search space is represented by a set of non-intersecting hypercubes (boxes). The boxes are then iteratively split along an axis plane according to the value of the function at a representative point of the box (and its neighbours) and the box's size. These two splitting criteria combine to form a global search by splitting large boxes and a local search by splitting areas for which the function value is good.

Additionally, a local search combining a (multi-dimensional) quadratic interpolant of the function and line searches can be used to augment performance of the algorithm. In this case MCS is used to (non-directly) provide both starting points and search directions. Information provided by local searches (namely local minima) is then fed back to the optimizer and can improve its efficincy by influencing the splitting criteria.

Convergence

The algorithm is guaranteed to converge to the global minimum in the long run (i.e. when the number of function evaluations and the search depth are arbitrarily large) if the objective function is continuous in the neighbourhood of the global minimizer. This follows from the fact that any box will become arbitrarily small eventually, hence the spacing between samples tends to zero as the number of function evaluations tends to infinity.

Implementation

MCS can be implemented in an efficient recursive way with the aid of trees. With this approach the amount of memory required is independent of problem dimensionality since the sampling points are not stored explicitly. Instead, just a single coordinate of each sample is saved and the remaining coordinates can be recovered by tracing the history of a box back to the root (initial box).

When implemented carefully this method also allows for avoiding repeated function evaluations. More precisely, if a sampling point is placed along the boundary of two adjacent boxes then this information can often be extracted through backtracing the point's history for a small number of steps. Consequently, new subboxes can be generated without evaluating the (potentially expensive) objective function further increasing the algorithm's efficiency.