Artificial bee colony algorithm

From Scholarpedia

This article is undergoing 1 initial review (2 completed); It may contain inaccuracies and unapproved changes made by anonymous reviewers.

Peer review status

You are not logged in.

Reviewer A: Modified and approved on 27 July 2009.
Reviewer B: Awaits author's response (last modifications by author - 5 days ago)
Reviewer C: Modified and approved on 1 September 2009.
This article is not accepted to Scholarpedia yet. It may contain inaccuracies and unapproved changes made by anonymous reviewers.
Dr. Dervis Karaboga prefers old-fashioned peer-review process: all comments should be put into the 'reviews' part of the article.

Author: Dr. Dervis Karaboga, Erciyes University, Computer Engineering Department, Turkey

Artificial Bee Colony (ABC) algorithm is a population based modern heuristic algorithm and was introduced by Karaboga in 2005 (Karaboga, 2005) for optimizing numerical problems. It was inspired of the intelligent foraging behavior of honey bees. The algorithm is specifically based on the model proposed by Tereshko and Loengarov (2005) for the foraging behaviour of honey bee colonies. The model consists of three essential components: food sources, employed and unemployed foraging bees. Foraging bees search for rich food sources close to their hive. The model also defines two leading modes of behaviour which are neccessary for self-organizing: recruitment of foragers to rich food sources resulting in positive feedback and abandonment of poor sources by foragers causing negative feedback.

In ABC, a colony of artificial forager bees (agents) search rich artificial food sources (good solutions for a given problem). In the application, first, the optimization problem is converted into the problem of finding the best parameter vector which minimizes an objective function. Secondly, artificial bees discover a population of initial solution vectors and then iteratively improve them by employing the strategies: recruitment to good solutions, abandonment of poor solutions; and using a neigbour production mechanism.


Contents

Global Optimization Problem

A global optimization problem can be defined as finding the parameter vector \vec x that minimizes an objective function f (\vec x ) (1) subject to bounds (2), inequality (3) and/or equality (4) constraints.

(1)
{\rm minimize~} f(\vec x),~~\vec x = (x_1 , x_2, \ldots ,x_i, \ldots,x_{n-1}, x_n ) \in \mathbb{R}^n

where f (\vec x ) is defined on a search space, S, which is a n-dimensional rectangle in R^n (S \subseteq  R^n). The variable domains are limited by their lower and upper bounds (2).

(2)
{\rm ~~~~~~~~~~~~~~~~~~~~~~}l_i \leq  x_i\leq u_i, ~~~i=1,\ldots,n
(3)
{\rm subject~to:~}~~~g_j( \vec{x} ) \leq 0,~for j=1,\ldots,q
(4)
{\rm ~~~~~~~~~~~~~~~~~~~} h_j(\vec{x})=0,~for j=q+1,\ldots,m

This problem is also known as constrained optimization problem. If m=0, then it is called unconstrained optimization problem.

The Artificial Bee Colony Metaheuristic

In ABC, the colony of artificial bees contains three groups of bees: employed bees associated with specific food sources, onlooker bees watching the dance of employed bees within the hive to choose a food source and scouts searching for food sources randomly. Onlooker bees and scouts are also called unemployed bees. In ABC, the first half of the colony consists of employed bees while the second half constitutes the onlooker bees. The employed bee whose food source has been exhausted becomes a scout bee. In ABC, the position of a food source represents a possible solution to the problem and the nectar amount of a food source corresponds to the quality (fitness) of the associated solution. The number of the employed bees is equal to the number of food sources (solutions) since each employed bee is associated with only one food source.

The general scheme of the ABC algorithm is as follows:

Initialize the food source positions and set parameters
REPEAT
Employed Bees Phase
Onlooker Bees Phase
Scout Bees Phase
Memorize the best solution achieved so far
UNTIL(Cycle=Maximum Cycle Number or a Maksimum CPU time)

Initialization Phase

The population of food sources x_{mi} are initialized (m=1...SN, SN: the population size). Since each food source, \vec{x_{m}}, is a solution vector to the optimization problem, each \vec{x_{m}} vector holds elements x_{mi}, i=1...n that correspond to the parameters of an optimization problem and n is the number of optimization parameters.

The following definition might be used for initialization purpose (5):

(5)
x_{mi}=l_{i}+rand(0,1)*(u_i-l_i)

where l_i and u_i are the lower and upper bound of the parameter x_{mi}, respectively.

Employed Bees Phase

Employed bees search for new food sources (\vec{\upsilon_{m}}) having more nectar within the neighbourhood of the food source (\vec{x_{m}}) in their memory. They find a neighbour food source and then evaluate its profitability (fitness). For example, they can determine a neighbour food source \vec{\upsilon_{m}} using the formula given by the equation (6), and evaluate its fitness using equation (7).

(6)
\upsilon_{mi} = x_{mi} + \phi_{mi}(x_{mi} - x_{ki})

where \vec{x_k} is a randomly selected food source, i is a randomly chosen parameter index and \phi_{mi} is a random number within the range [-a,a]. After producing new food source (\vec {\upsilon_m}), its fitness is calculated and a greedy selection is applied between \vec{\upsilon_{m}} and \vec{x_{m}}.

The fitness value might be calculated for minimization problems using the following definition (7)

(7)
fit_ m (\vec{x_m})= \left\{ {\begin{array}{*{20}c}    {\frac{1}{{1 + f_m (\vec{x_m})}}}  & {} & {if{\rm{ }}f_m(\vec{x_m})  \ge 0}  \\    {1 + abs(f_m (\vec{x_m}))} & {}  & {if{\rm{ }}f_m (\vec{x_m}) < 0}   \\ \end{array}} \right\}

where f_m(\vec{x_m}) is the cost value of the objective function for the solution \vec{x_m}.


Onlooker Bees Phase

Unemployed bees consist of two groups of bees: onlooker bees and scouts. Employed bees share their food source information with onlooker bees waiting in the hive and then onlooker bees probabilistically choose their food sources depending on this information. In ABC, an onlooker bee chooses a food source depending on the probability values calculated using the fitness values provided by employed bees. For this purpose, a fitness based selection technique can be used, such as the roulette wheel selection method (Goldberg, 1989).

The probability value for \vec{x_m}, p_m, with that \vec{x_m}, is choosen by an onlooker bee can be calculated by using the expression given in equation (8) :

(8)
p_m  = \frac{{fit_m(\vec{x_m}) }}{{\sum\limits_{m = 1}^{SN} {fit_m (\vec{x_m})} }}

After a food source \vec{x_m} for an onlooker bee is probabilistically chosen, a neighbourhood source \vec{\upsilon_m} is determined by using the equation (6), and then its fitness value is computed. As in employed bees phase, a greedy selection is applied between \vec{\upsilon_{m}} and \vec{x_{m}}.

Scout Bees Phase

The unemployed bees who choose their food sources randomly are called scouts. Firstly, in ABC, employed bees whose solutions can not be improved through a predetermined number of trials become scouts and then their solutions are abondoned. Secondly, they start to search for new solutions, randomly. For instance, if the solution \vec{x_m} has been abandoned, the new solution discovered by the scout who was the employed bee of \vec{x_m} can be defined by (5). The number of trials for abandoning a solution is an important control parameter called ‘‘limit’’ or “abandonement criterion”

Main features of the ABC algorithm

The ABC algorithm

1) mimics the foraging behaviour of honeybees closely

2) has been originally proposed for numerical optimization

3) can be also used for combinatorial optimization problems

4) can be used for unconstrained and constrained optimization problems

5) has the ability of local and global search

6) is quite simple, flexible and robust

7) employs a few control parameters


Applications of ABC

An Unconstrained Optimization Problem: Neural Network Training for XOR problem

The exclusive-OR (XOR), boolean function is a difficult classification problem mapping two binary inputs to a single binary output as (0 0;0 1;1 0;1 1)›(0;1;1;0). This classical benchmark is also a hard task for the neural networks that are being successfully applied to solving problems in pattern classification, function approximation, optimization, patern matching and associative memories. Training an artificial neural network is an optimization task since it is desired to find the optimal weight set of a neural network in training process. The optimization goal is to minimize the objective function by optimizing the network weights.

Figure 1: An example of Neural Network structure for XOR problem
Enlarge
Figure 1: An example of Neural Network structure for XOR problem

In the simulations a 2-2-1 feed-forward neural network having six connection weights and no biases (having six parameters, XOR6), a 2-2-1 feed-forward neural network having six connection weights and three biases (having 9 parameters, XOR9) and a 2-3-1 feed-forward neural network having nine connection weights and four biases totally thirteen weights (XOR13) were used.

In Table 1, means of Mean Square Errors (MSE) of 30 runs of each configuration are recorded for ABC and Particle Swarm Optimization (PSO) algorithms where each run started with a random population with different seeds. The value of SN was chosen as 50 and the limit value was set to SN*n, where n is dimension of the weight set.

Table 1: Mean MSE of 30 runs of ABC and standard PSO algorithms in ANN training process
XOR6 XOR9 XOR13
ABC 0.007051 0.006956 0.006079
PSO 0.097255 0.057676 0.014549

From the results presented in Table 1, it is clear that the ABC algorithm is more successful than standard PSO at training neural networks on the XOR benchmark problem in all cases (Karaboga and Basturk, 2007).

A Constrained Optimization Problem: Welded Beam Design

In order to handle with constraints in the constrained optimization problem addressed, the ABC algorithm employed Deb’s rules. Deb’s rules are used instead of the greedy selection employed between \vec{\upsilon_{m}} and \vec{x_{m}} in ABC proposed for unconstrained optimization problems (Karaboga and Basturk, 2007). Deb’s method uses a tournament selection operator, where two solutions are compared at a time by applying following criteria (Deb, 2000):

  • Any feasible solution satisfying all constraints is preferred to any infeasible solution violating any of the constraints,
  • Among two feasible solutions, the one having better fitness value is preferred,
  • Among two infeasible solutions, the one having smaller constraint violation is preferred.

Welded beam design illustrated in Fig.2 minimizes the cost of the beam subject to constraints on shear stress, \tau, bending stress in the beam, \sigma, buckling load on the bar, P_c , end deflection of the beam,\delta, and side constraints. There are four design parameters x_1, x_2, x_3, x_4 which correspond to h, l, t, b variables, respectively.

Figure 2: The Welded Beam Design Problem
Enlarge
Figure 2: The Welded Beam Design Problem


(9)
min f(X) = 1.1047x_1^2x_2 + 0.004811x_3x_4(14.0 + x_2)

{\rm{ }}\begin{array}{*{20}l}    {subject{\rm{ }}to} & {g_1 (X):{\rm{ }}\tau (x) - \tau _{\max } {\rm{ }} \le 0}   \\    {}  & {g_2 (X):{\rm{ }}\sigma (x) - \sigma _{\max }  \le 0}   \\    {}  & {g_3 (X):{\rm{ }}x_1  - x_4  \le 0}  \\    {}  & {g_4 (X):{\rm{ }}0.10471x_1^2  + 0.04811x_3 x_4 (14.0 + x_2 ) - 5.0 \le 0}   \\    {}  & {g_5 (X):{\rm{ }}0.125 - x_1  \le 0}   \\    {}  & {g_6 (X):{\rm{ }}\delta (x) - \delta _{\max }  \le 0}   \\    {}  & {g_7 (X):{\rm{ }}P - P_c (x) \le 0}   \\ \end{array}

From the results presented in Table 2, it is seen that ABC is able to find the optimum solution for the constrained engineering design problem: welded beam. The low mean and standard deviation values show the robustness of the algorithm. When compared to the results produced by (Montes and Coello 2005) (\mu+\lambda-ES), the ABC algorithm is more robust.


Table 2: Statistics of the Results obtained by the ABC algorithm for Welded Beam Design Problem
Best Mean Std. Dev. Evaluations
ABC 1.724852 1.741913 3.1E-02 30000
(\mu+\lambda-ES) Montes and Coello 2005 1.724852 1.777692 8.8E-2 30000
Table 3: Parameter and Constraint values of the best solution obtained by the ABC algorithm for Welded Beam Design Problem
x1 x2 x3 x4 g1 g2 g3 g4 g5 g6 g7 f(x)
0.20573 3.470489 9.036624 0.20573 0 -2E-06 0 -3.43298 -0.08073 -0.23554 0 1.724852


Other Approaches Inspired of Honeybee Foraging Behaviour

Combinatorial Optimization:

Lucic and Teodorovic introduced a Bee System based on foraging behaviour of bee colonies for solving difficult combinatorial optimization problems (Lucic and Teodorovic, 2001).The Bee System was tested through many instances of the Traveling Salesman Problem (Lucic,2002; Lucic and Teodorovic, 2002; Teodorovic, 2003; Lucic and Teodorovic, 2003a). Teodorovic and Dell (2005) proposed a Bee Colony Optimization (BCO) Metaheuristic for the Ride-matching problem in 2005 and (Markovic et al., 2007) applied for the routing and wavelength assignment (RWA) in all-optical networks. Another algorithm simulating foraging behaviour is BeeAdHoc described by Wedde and Farooq (2005c), which is a routing algorithm for energy efficient routing in mobile ad hoc networks. Drias and Yahi (2005) introduced a meta-heuristic named "Bees Swarm Optimization" and its adaptation to the features of the MAX-W-SAT problem was introduced to contribute to its resolution. Chong et al. (2006) described a bee colony optimization algorithm based on foraging and waggle dance and using dance durations to select a new path, and the algorithm was applied to job shop scheduling. Chong et al. (2007) utilized an efficient neighborhood structure to search for feasible solutions and iteratively improve them. The results indicated that the performance of the proposed approach is comparable to other efficient scheduling approaches. In (Quijano and Passino, 2007), a model of honey bee social foraging was introduced for solving a class of optimal resource allocation problems.

Numerical Optimization:

Yang (2005) developed a virtual bee algorithm (VBA) to solve the numerical function optimizations. The algorithm works for the functions with two-parameters. Pham et al. (2005) described the Bees Algorithm which mimics the foraging behaviour of honey bees. In its basic version, the algorithm performs a kind of neighbourhood search combined with random search and can be used for both combinatorial optimization and functional optimization.


Current Trends

The initial applications of ABC were in the area of numerical optimization problems since it was originally proposed for this kind of problems (Karaboga, 2005). The performance of ABC was compared with Genetic Algorithm (GA), Differential Evolution (DE), and PSO algorithms for unconstrained numerical optimization problems (Basturk and Karaboga 2006, Karaboga and Basturk 2007a, Karaboga and Basturk 2008).

An extended version of the ABC was compared on the constrained optimization problems with DE and PSO algorithms in (Karaboga and Basturk 2007b,Domínguez 2009).

The ABC algorithm was applied to train feed-forward neural networks on classification problems: In (Karaboga, Basturk and Ozturk, 2007) XOR, Decoder-Encoder and 3-Bit Parity benchmark problems were chosen to compare the performance of ABC with Genetic Algorithm (GA) and Back-Propagation (BP) Algorithms; In ( Karaboga, Ozturk, Akay, 2008) 3 medical problems (cancer, diabetes, heart) were considered from Proben1 database (Prechelt, 1994) and the classification performance of the ABC algorithm was compared to Back-Propagation (BP), Levenberg-Marquardt (LM) and Genetic Algorithm (GA).

The use of ABC for optimizing hybrid functions, solving integer programming and engineering design problems (Rao et al., 2008,Singh, 2009, Karaboga, 2009), combinatorial type optimization, multi-objective optimization and binary-variable optimization are current hot topics.

Several papers reporting on research related to ABC and its applications can be found in http://mf.erciyes.edu.tr/abc


References

Vries, H., Biesmeijer J.C. (1998), Modelling collective foraging by means of individual behaviour rules in honey-bees, Behav Ecol Sociobiol, 44: 109-124.

Karaboga, D, (2005). An idea based on honey bee swarm for numerical optimization. Technical Report TR06, Erciyes University, Engineering Faculty, Computer Engineering Department, 2005.

Deb, K. (2000). An efficient constraint handling method for genetic algorithms. Computer Methods in Applied Mechanics and Engineering, 186(2- 4):311–338.

Tereshko, V., Loengarov, A. (2005), Collective decision-making in honey bee foraging dynamics, Comput. Inf. Syst. J. 1352-94049.

Goldberg, D.E. (1989), Genetic algorithms in search, in: optimization and machine learning, Addison-Wesley Pub. Co., ISBN: 0201157675.

Basturk, B., Karaboga, D. (2006), An artificial bee colony (ABC) algorithm for numeric function optimization, IEEE Swarm Intelligence Symposium, May 12-14, 2006, Indianapolis, Indiana, USA.

Karaboga, D., Basturk, B. (2007), A powerful and efficient algorithm for numerical function optimization: artificial bee colony (ABC) algorithm, Journal of Global Optimization, Volume:39 , Issue:3 ,pp: 459-471, Springer Netherlands.

Karaboga, D., Akay, B. (2007), Artificial Bee Colony (ABC) Algorithm on Training Artificial Neural Networks, Signal Processing and Communications Applications, 2007. SIU 2007, IEEE 15th. 11-13 June 2007, Page(s):1 - 4, doi: 10.1109/SIU.2007.4298679

Karaboga, D., Basturk, B. (2008), On the performance of artificial bee colony (ABC) algorithm, Applied Soft Computing,Volume 8, Issue 1, Pages 687-697.

Karaboga D., Basturk B. (2007), Artificial bee colony (ABC) optimization algorithm for solving constrained optimization problems, LNCS: Advances in Soft Computing: Foundations of Fuzzy Logic and Soft Computing, Vol: 4529/2007, pp: 789-798, Springer- Verlag, 2007, IFSA 2007.

Domínguez, O. C. (2009), An adaptation of the scout bee behavior in the Artificial Bee Colony algorithm to solve constrained optimization problems, Laboratorio Nacional de Informática Avanzada (LANIA), MsC, Thesis, Supervisor: Efrén Mezura-Montes.


Karaboga, D., Basturk, B., Ozturk, C. (2007), Artificial bee colony (ABC) optimization algorithm for training feed-forward neural networks, LNCS: Modeling Decisions for Artificial Intelligence, Vol: 4617/2007, pp:318-319, Springer-Verlag, MDAI 2007.

Prechelt, L. (1994), Proben1 - A set of neural network benchmark problems and benchmarking rules. Fakultat fur Informatik Universitat, Karlsruhe, Germany.

Karaboga, D., Akay, B. Effect of region scaling on the initialization of particle swarm optimization, differential evolution and artificial bee colony algorithms on multimodal high dimensional problems, International Conference on Multivariate Statistical Modelling & High Dimensional Data Mining 19-23 June 2008, Erciyes University, Kayseri, Turkey.

Karaboga, D., Ozturk, C., Akay, B., Training neural networks with ABC optimization algorithm on medical pattern classification, International Conference on Multivariate Statistical Modelling & High Dimensional Data Mining 19-23 June 2008, Erciyes University, Kayseri, Turkey.

Karaboga, N., A new design method based on artificial bee colony algorithm for digital IIR filters, In Press, doi:10.1016/j.jfranklin.2008.11.003

Singh, A., An artificial bee colony algorithm for the leaf-constrained minimum spanning tree problem, Applied Soft Computing, 9 (2), 625-631, 2009

Rao, R. S., Narasimham, S.V.L., Ramalingaraju, M., Optimization of distribution network configuration for loss reduction using artificial bee colony algorithm, International Journal of Electrical Power and Energy Systems Engineering (IJEPESE) , Volume 1, Number 2, Spring 2008

Mezura-Montes, E., Coello Coello, C., Useful infeasible solutions in engineering optimization with evolutionary algorithms. In MICAI 2005: Advances in Artificial Intelligence, volume 3789/2005 of Lecture Notes in Computer Science, pages 652–662. Springer Berlin / Heidelberg, 2005.

Lucic, P. and Teodorovic, D. (2001). Bee system: Modeling combinatorial optimization transportation engineering problems by swarm intelligence. In Preprints of the TRISTAN IV Triennial Symposium on Transportation Analysis, pages 441-445, SaoMiguel, Azores Islands, Portugal.

Lucic, P. (2002). Modeling transportation problems using concepts of swarm intelligence and soft computing. PhD thesis, Virginia Polytechnic Institute and State University. Chair-Dusan Teodorovic

Lucic, P., Teodorovic, D. (2002). Transportation modeling: an artificial life approach. In 14th IEEE International Conference on Tools with Artificial Intelligence, 2002. (ICTAI 2002)., pages 216 - 223.

Lucic, P., Teodorovic, D. (2003). Computing with bees: Attacking complex transportation engineering problems. International Journal on Artificial Intelligence Tools, 12(3):375-394.

Teodorovic, D., Dell, M. O. (2005). Bee colony optimization - a cooperative learning approach to complex transportation problems. Advanced OR and AI Methods in Transportation, pages 51- 60.

Markovic, G., Teodorovic, D., Acimovic-Raspopovic, V. (2007). Routing and wavelength assignment in all-optical networks based on the bee colony optimization. AI Communications European Journal of Artificial Intelligence, 20:273 285.

Wedde, H., Farooq, M. (2005). The wisdom of the hive applied to mobile ad-hoc networks. Swarm Intelligence Symposium, 2005. SIS 2005. Proceedings 2005 IEEE, pages 341-348.

Drias, H., S. S., Yahi, S. (2005). Cooperative bees swarm for solving the maximum weighted satisfiability problem. In Computational Intelligence and Bioinspired Systems, volume 3512/2005 of LNCS, pages 318 - 325

Chong, C. S., Sivakumar, A. I., Malcolm Low, Y. H., Gay, K. L. (2006). A bee colony optimization algorithm to job shop scheduling. In WSC '06: Proceedings of the 38th conference on Winter simulation, pages 1954{1961. Winter Simulation Conference.

Chong, C. S., Malcolm Low, Y. H., Sivakumar, A. I., Gay, K. L. (2007). Using a bee colony algorithm for neighborhood search in job shop scheduling problems. In 21st European Conference on Modeling and Simulation (ECMS 2007).

Quijano, N. and Passino, K. (2007). Honey bee social foraging algorithms for resource allocation, part i: Algorithm and theory. In American Control Conference, 2007. ACC '07, pages 3383-3388.

Yang, X. S. (2005). Engineering optimizations via nature-inspired virtual bee algorithms. In Artificial Intelligence and Knowledge Engineering Applications: A Bioinspired Approach, volume 3562/2005 of LNCS, pages 317-323.

Pham, D. T., Ghanbarzadeh, A., Koc, E., Otri, S., Rahim, S., Zaidi, M. (2005). The bees algorithm. Technical report, Manufacturing Engineering Centre, Cardiff University, UK

Appendix -- Foraging Behaviour of Honey Bees

An interesting swarm is honey bee colony which performs tasks within and out of the hive in a swarm intelligent manner. Since the availability of the nectar sources around the hive varies in space and time, the colony of bees has to adapt its foraging behaviour to the changes in the environment. For instance, an appropriate division of the worker efforts between exploring new sources and exploiting the available ones is very important via collective intelligence for the maintenance of the colony (Vries and Biesmeijer, 1998).As stated before, the minimal model of forage selection that leads to the emergence of collective intelligence of honey bee swarms consists of three essential components: food sources, employed foragers and unemployed foragers (Tereshko and Loengarov, 2005)..


(i) Food sources: The “profitability” of a food source is related to several factors such as its closeness to the nest, richness of energy and the ease of extracting the energy from the source. In the minimal model, the profitability of a food source is represented with one of the quantities.

(ii) Employed foragers: These foragers are associated with a specific food source they exploit or are employed at. They carry information about the specific source such as its distance, direction from the hive and the profitability of the source and then they share this information with the forager bees waiting in the hive by dancing which is an example of multiple interaction.

(iii) Unemployed foragers seeking a food source to exploit: scouts and onlooker bees . The scouts randomly search the environment surrounding the hive for new food sources and this behaviour is a kind of fluctuations which is vital for self-organization; and the onlooker bees waiting in the hive find a food source by means of the information presented by employed foragers. The mean number of scouts is about 5–10% of the foragers (Tereshko and Loengarov, 2005)

The exchange of information among bees is the most important occurrence in the formation of collective knowledge. While examining the entire hive, it is possible to distinguish some parts that commonly exist in all hives. The most important part of the hive regarding to exchanging information is the dancing area where different types of dances are performed: Waggle dance, Round dance, Tremble dance, and etc. Communication among bees related to the quality of food sources is called waggle dance. Since information about all the current rich sources is available to onlooker bees on the dance floor, they probably could watch numerous dances and choose to employ themselves at profitable sources. Employed foragers share their information with a probability which is proportional to the profitability of their food sources. There is a greater probability of onlooker bees choosing more profitable sources since more information is circulating about the more profitable sources. Hence, the recruitment is proportional to profitability of food sources (Tereshko and Loengarov, 2005).

External Links

http://mf.erciyes.edu.tr/abc http://mf.erciyes.edu.tr/abc]: This is the official web site dedicated to the ABC Algorithm

See also

Algorithm, Swarm intelligence, Ant colony optimization, Flocking and swarming

Suggested by: Mr. Florian Hauser, Institute of Neural Information Processing, Ulm University, Germany
Invited by: Dr. Eugene M. Izhikevich, Editor-in-Chief of Scholarpedia, the peer-reviewed open-access encyclopedia
Action editor: Dr. Eugene M. Izhikevich, Editor-in-Chief of Scholarpedia, the peer-reviewed open-access encyclopedia
For authors