ArticleslgStudy

computer science

Tabu search

Tabu search is a computer science topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Tabu search rather than just read about it. In short: Tabu search (TS) is a metaheuristic search method employing local search methods used for mathematical optimization. It was created by Fred W.

Key takeaways

  • Tabu search belongs to computer science; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Tabu search to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Tabu search from memory before moving on to harder problems.

Reference excerpt

Tabu search (TS) is a metaheuristic search method employing local search methods used for mathematical optimization. It was created by Fred W. Glover in 1986 and formalized in 1989. Local (neighborhood) searches take a potential solution to a problem and check its immediate neighbors (that is, solutions that are similar except for very few minor details) in the hope of finding an improved solution. Local search methods have a tendency to become stuck in suboptimal regions or on plateaus where many solutions are equally fit. Tabu search enhances the performance of local search by relaxing its basic rule. First, at each step worsening moves can be accepted if no improving move is available (like when the search is stuck at a strict local minimum). In addition, prohibitions (hence the term tabu) are introduced to discourage the search from coming back to previously visited solutions. The implementation of tabu search uses memory structures that describe the visited solutions or user-provided sets of rules. If a potential solution has been previously visited within a certain short-term period or if it has violated a rule, it is marked as "tabu" (forbidden) so that the algorithm does not consider that possibility repeatedly.

Background The word tabu comes from the Tongan word to indicate things that cannot be touched because they are sacred. Tabu search is a metaheuristic algorithm that can be used for solving combinatorial optimization problems (problems where an optimal ordering and selection of options is desired). Current applications of TS span the areas of resource planning, telecommunications, VLSI design, financial analysis, scheduling, space planning, energy distribution, molecular engineering, logistics, pattern classification, flexible manufacturing, waste management, mineral exploration, biomedical analysis, environmental conservation and scores of others. In recent years, journals in a wide variety of fields have published tutorial articles and computational studies documenting successes by tabu search in extending the frontier of problems that can be handled effectively — yielding solutions whose quality often significantly surpasses that obtained by methods previously applied. A comprehensive list of applications, including summary descriptions of gains achieved from practical implementations, can be found in

Basic description Tabu search uses a local or neighborhood search procedure to iteratively move from one potential solution x {\displaystyle x} to an improved solution x ′ {\displaystyle x'} in the neighborhood of x {\displaystyle x} , until some stopping criterion has been satisfied (generally, an attempt limit or a score threshold). Local search procedures often become stuck in poor-scoring areas or areas where scores plateau. In order to avoid these pitfalls and explore regions of the search space that would be left unexplored by other local search procedures, tabu search carefully explores the neighborhood of each solution as the search progresses. The solutions admitted to the new neighborhood, N ∗ ( x ) {\displaystyle N^{*}(x)} , are determined through the use of memory structures. Using these memory structures, the search progresses by iteratively moving from the current solution x {\displaystyle x} to an improved solution x ′ {\displaystyle x'} in N ∗ ( x ) {\displaystyle N^{*}(x)} . Tabu search has several similarities with simulated annealing, as both involve possible downhill moves. In fact, simulated annealing could be viewed as a special form of TS, whereby we use "graduated tenure", that is, a move becomes tabu with a specified probability. These memory structures form what is known as the tabu list, a set of rules and banned solutions used to filter which solutions will be admitted to the neighborhood N ∗ ( x ) {\displaystyle N^{*}(x)} to be explored by the search. In its simplest form, a tabu list is a short-term set of the solutions that have been visited in the recent past (less than n {\displaystyle n} iterations ago, where n {\displaystyle n} is the number of previous solutions to be stored — is also called the tabu tenure). More commonly, a tabu list consists of attributes that have changed by the process of moving from one solution to another. It is convenient, for ease of description, to understand a “solution” to be coded and represented by such attributes.

Types of memory The memory structures used in tabu search can roughly be divided into three categories:

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Tabu search

Start with the simplest possible case. Write down what Tabu search claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In computer science, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Tabu search before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Tabu search ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Tabu search

In research
Tabu search appears in computer science research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Tabu search in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Tabu search is common in secondary-school and first-year university syllabi. It links to neighbouring topics 1989 introductions, Metaheuristics, Search algorithms, so understanding it makes those chapters shorter.
In everyday life
Look for Tabu search outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Tabu search in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Tabu search means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Tabu search out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Tabu search in simple terms?

Tabu search (TS) is a metaheuristic search method employing local search methods used for mathematical optimization. It was created by Fred W.

Why does Tabu search matter?

Because it connects several computer science ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Tabu search?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Tabu search.

Tags

  • 1989 introductions
  • Metaheuristics
  • Search algorithms

Keep exploring