SlideShare une entreprise Scribd logo
1  sur  7
Télécharger pour lire hors ligne
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
DOI:10.5121/ijcsa.2014.4208 73
Accelerating The Ant Colony Optimization By
Smart Ants, Using Genetic Operator
Hassan Ismkhan
Department of Computer Engineering, University of Bonab, Bonab, East Azerbaijan, Iran
ABSTRACT
This paper research review Ant colony optimization (ACO) and Genetic Algorithm (GA), both are two
powerful meta-heuristics. This paper explains some major defects of these two algorithm at first then
proposes a new model for ACO in which, artificial ants use a quick genetic operator and accelerate their
actions in selecting next state.
Experimental results show that proposed hybrid algorithm is effective and its performance including speed
and accuracy beats other version.
KEYWORDS
Ant Colony Optimization, Genetic Algorithm, Genetic Operator, Speeding up
1. INTRODUCTION
The versions of ACO have been successfully applied to type of combinatorial optimization
problem same as scheduling problems [5], routing problems [6] and knapsack problem [9]. The
ACO is also successful in dealing with continuous optimization problems [11] [12]. However
time complexity of ACO is Ω (N2
) which is too high [10] and prevents applicability of ACO for
large scale problems. In other hand, versions of Genetic Algorithm (GA) which is one of the most
important type of meta-heuristics, have been also applied to combinatorial and continues
optimization problems. The types of GA have solved scheduling problems [1], knapsack
problems [14] and routing problems [15] which all are combinatorial optimization problems. GAs
also have been successfully applied to continuous optimization problems such as function
optimization [16] [17].
Although GA and ACO are successful meta-heuristics, both have their own bottlenecks.
Considering defect points of GA and ACO will help us to design effective frameworks.
GA has powerful population-based search engine which can explore new regions of answer area,
instead its exploitation ability dramatically comes down when appropriate operators is not used in
body of GA. It should be considered that designing new operators for GA needs more invention.
Operators should have enough speed and should increase exploitation ability of GA, where
population of GA grant exploration ability of GA.
ACO usually uses small group of artificial ants to make solutions. In addition, ACO uses
additional information in its baseline algorithm which is known as pheromone trails. Pheromone
update by ants and help ants to find better solutions. Although using pheromone causes
appropriate level of exploitation, these additional information decrease exploration ability of
algorithm and led to local trap problem.
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
74
There are some research attempt to use and merge benefits of both GA and ACO [7]. This paper
also proposes effective model of merging ACO and GA which has appropriate speed and
accuracy. Therefore the rest of paper scheduled as, next section reviews GA and ACO briefly,
section 3 propose our method, section 4 puts forward experimental results and finally section 5
summarizes paper.
2. GA AND ACO, BRIEF REVIEW OF THEIR ALGORITHMS
The case study of this research is Travelling Salesman Problem (TSP). TSP is finding minimum
Hamilton tour in withed graph. Also in this section, both GA and ACO are explained by using
TSP.
2.1. ACO
Ant System (AS) is first version of ACO. In AS, in each step, m artificial ants locate on m
different start nodes and begin to construct their tours in n sub-steps, where n is the number of
nodes in graph. Each ant to select next node uses a rule which is named transition rule and is
defined as below:
p (r, s) =
[τ( , )] .[η( , )]β
∑ [τ( , )] .[η( , )]β
∈ ( )
if s ∈ J (r)
0 herwise
(1)
Where p (r, s) is probability of a choosing node s after node r by ant k, J (r) is the set of
unvisited nodes of ant k, ( , ) = 1/ ( , ) and ( , ) is pheromone amount of rs.The
β andα are parameters. When each ant completes its tour, tries to update pheromone value by
below equation which is named pheromone update rule.
( , ) ← (1 − ). ( , ) + ∑ ∆ ( , ) (2)
Where ∆ ( , ) =
, ( , )
0, ℎ
Ant Colony System (ACS) is another versions of ACO which add another rule in which ants after
each sub-step update pheromone locally when select their next node. This rule is named local
pheromone update rule and implemented by below equation.
( , ) ← (1 − ). ( , ) + . (3)
In ACS transition rule uses below eqution:
S =
arg max ∈ ( ){[τ(r, u)] . [η(r, u)]β} , if q ≤ q
use (1) , otherwise
(4)
Max-Min Ant System is another version of ACO in which pheromone value are bounded between
a max and min value. Both methodologies in ACS and MMAS help ACO to escape from local
optima traps [13]. The baseline algorithm for ACO is as figure 1.
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
75
For I = 1 to MAX-Number-of-Iteration
Locate m ants on m different nodes
For J = 1 to N (N is the number of nodes in graph)
For each ant
Select next node according to (4)
Update pheromone locally by (2)
End For
Update pheromone globally by (3)
End For
Figure 1. ACO algorithm
2.2. GA
GA usually starts with population of random solutions. In each step, new solutions are generated
by operators. These operators select and take one or more solutions from population and produce
new solution according to selected solutions.
There are two types of operator for GA: mutation operator and crossover operator. Mutation
operator, takes a solution and changes it. This operator helps GA to prevent increasing similar
solutions in population. This is a benefit, because similar solutions in population causes
premature convergence and local optima problems. The Double-Bridge is one of the most famous
mutation for TSP solver GAs. Figure 2 shows Double-Bridge operator.
Figure 2. The Double-Bridge operator: Part (A) Shows how Double-Bridge works, Part (B) Shows an
example for Double-Bridge
In other hand, crossover operator takes two solutions usually are named parent, and produces one
or two solutions according to (similar to) parents which are named children or offspring. Paper
[3] reviews some of recent crossover operators. There are some accurate crossover operators
same as EAX [8] but its time complexity is o(n2
) which is too slow. Here we point to Improved
Greedy Crossover which has o(n) time complexity [7]. To explain IGX, please consider a graph
with 8 nodes that its edges cost are in matrix of figure 4. Figure 5 shows how IGX constructs
child according to the two parents as 1-6-8-4-5-7-3-2 and 6-2-4-8-5-1-7-3.
1 2 3 4 5 6 7 8
1 0 12 19 31 22 17 23 12
2 12 0 15 37 21 28 35 22
3 19 15 0 50 36 35 35 21
4 31 37 50 0 20 21 37 38
5 22 21 36 20 0 25 40 33
6 17 28 35 21 25 0 16 18
7 23 35 35 37 40 16 0 14
8 12 22 21 38 33 18 14 0
Figure 3. The cost matrix of a graph with 8 nodes
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
76
Use Fig.2’s father and mother:
Step 0: Double-linked list construction
Step 3: Select 3’th node
Among 7, 8, 1 and 2, 1 is closer to 5 so it selected as
next node.
child: 4 5 1
lists updating: Eliminates two pointers that point to 1.
Step 1: First node selection: It is selected randomly.
Please suppose it is 4.
child: 4
Lists updating: Eliminates two pointers that point to
4.
Step 2: Select 2’th node
Among 5, 8, 8 and 2, 5 is closer to 4 so it selected as
next node.
child: 4 5
Lists updating: Eliminates two pointers that point to
5.
Step 4: Select 4’th node
Among 2, 6, 7 and 8, 2 is closer to 1 so it selected as
next node.
child: 4 5 1 2
Lists updating: Eliminates two pointers that point to 2.
Figure 4. IGX [2]
GA, itself has two important types: generational GA and steady state GA. In generational GA, in
each generation, new produced solutions (which are produced by mutation or crossover operators)
are added to population and after some generations, the size of population normalized by
eliminating solutions with low fitness. In steady state GA, in each generation, new solution is
replaced by one of solution in population. Figure 6 shows baseline algorithm of both generational
and steady state GA.
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
76
Use Fig.2’s father and mother:
Step 0: Double-linked list construction
Step 3: Select 3’th node
Among 7, 8, 1 and 2, 1 is closer to 5 so it selected as
next node.
child: 4 5 1
lists updating: Eliminates two pointers that point to 1.
Step 1: First node selection: It is selected randomly.
Please suppose it is 4.
child: 4
Lists updating: Eliminates two pointers that point to
4.
Step 2: Select 2’th node
Among 5, 8, 8 and 2, 5 is closer to 4 so it selected as
next node.
child: 4 5
Lists updating: Eliminates two pointers that point to
5.
Step 4: Select 4’th node
Among 2, 6, 7 and 8, 2 is closer to 1 so it selected as
next node.
child: 4 5 1 2
Lists updating: Eliminates two pointers that point to 2.
Figure 4. IGX [2]
GA, itself has two important types: generational GA and steady state GA. In generational GA, in
each generation, new produced solutions (which are produced by mutation or crossover operators)
are added to population and after some generations, the size of population normalized by
eliminating solutions with low fitness. In steady state GA, in each generation, new solution is
replaced by one of solution in population. Figure 6 shows baseline algorithm of both generational
and steady state GA.
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
76
Use Fig.2’s father and mother:
Step 0: Double-linked list construction
Step 3: Select 3’th node
Among 7, 8, 1 and 2, 1 is closer to 5 so it selected as
next node.
child: 4 5 1
lists updating: Eliminates two pointers that point to 1.
Step 1: First node selection: It is selected randomly.
Please suppose it is 4.
child: 4
Lists updating: Eliminates two pointers that point to
4.
Step 2: Select 2’th node
Among 5, 8, 8 and 2, 5 is closer to 4 so it selected as
next node.
child: 4 5
Lists updating: Eliminates two pointers that point to
5.
Step 4: Select 4’th node
Among 2, 6, 7 and 8, 2 is closer to 1 so it selected as
next node.
child: 4 5 1 2
Lists updating: Eliminates two pointers that point to 2.
Figure 4. IGX [2]
GA, itself has two important types: generational GA and steady state GA. In generational GA, in
each generation, new produced solutions (which are produced by mutation or crossover operators)
are added to population and after some generations, the size of population normalized by
eliminating solutions with low fitness. In steady state GA, in each generation, new solution is
replaced by one of solution in population. Figure 6 shows baseline algorithm of both generational
and steady state GA.
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
77
Initial population;
Forgen-num = 1 to Max-Gen
while(some conditions)
select individuals to apply crossover;
apply crossover and generate
individual(s);
if(random number < MR)
mutate new individual(s);
Add new individuals to population;
End While
Remove extra individuals from population;
End For
Generational GA
Initial population;
For gen-num = 1 to Max-Gen
select individuals to apply crossover;
apply crossover and generate individual(s);
mutate new individual(s);
Replace new individual(s) with some ones
from population
End For
Steady state GA
Figure 5. The two types of GA
3. PROPOSED SMART ANT
As you see in previous section, IGX selects one edge with lowest cost among four edges.
Proposed smart ant are designed same as IGX, instead probing costs of four edges, probes results
of transition rule of ACS which stated in equation 5.
S =
arg max ∈ [τ(r, u)] . [η(r, u)]β
, if q ≤ q
use (6) , otherwise
(5)
p (r, s) =
[τ( , )] .[η( , )]β
∑ [τ( , )] .[η( , )]β
∈
if s ∈
0 herwise
(6)
Where all notations in (5) and (6) are same as (1) and (4) and PC is set of all four nodes which are
neighbour of current node in both parents.
Please consider that proposed hybrid algorithm consider a population of solutions and in each
step, smart ant which operates as IGX, takes two solutions from population, and produce new
child. In this process, smart ant considers equation 6 instead of cost of edges.
Initial population;
For gen-num = 1 to Max-Gen
Assign two solution for each ant
For each ant
For I = 1 to N
Select next node according to 5
Update pheromone locally
End For
//Solution of this ant is now completed
Apply 2-Opt [13] local search on solution of this ant
Update pheromone globally by equation 3
End For
Figure 6. Proposed hybrid ACO with smart ants
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
78
4. EXPERIMENTAL RESULTS
To probe performance of Hybrid-ACO-with-Smart-Ant (proposed method), call it HACO-SA, we
set up an experiment in which HACO-SA competed with MMAS to solve instance selected from
TSPLIB [5]. We ran this experiment on 2.40 GHz Intel CPU with 1 GB of random access
memory. All algorithm were implemented by c++ programming language. Experimental results
show that accuracy of HACO-SA is as well as MMAS, however speed of HACO-SA is more than
MMAS. Table 1 shows average (the number of runs was 30) cost of solutions gained by each
algorithm. As can been seen in table I, HACO-SA even has better solutions in average and for last
four instances completely overcomes MMAS.
Table 1. Average costs, computed by each algorithm per each instance.
Average
cost MMAS HACO-SA
eil51 426 426
eil76 538 538
kroA100 21282 21283.5
lin105 14379 14410.29
d198 15883.12 15983.5
lin318 42267.5 42219.33
pcb442 51010.233 50907.15
att532 27837.11 27761.3
rat783 8899.3 8851.21
Table 2 shows speed of HACO-SA is better than MMAS for last four instances. Also for lin105,
HACO-SA is quick than MMAS.
Table 2. Average time
Average
time MMAS HACO-SA
eil51 1.4887767 1.759
eil76 1.8801767 2.27605
kroA100 3.859565 4.1837
lin105 4.4618017 3.16685
d198 9.13653 10.13775
lin318 19.974383 15.9019
pcb442 16.971528 16.46665
att532 46.208823 34.2132
rat783 46.455887 36.1391
5. CONCLUSIONS
This paper reviews GA and ACO algorithms which both are two important types of meta-
heuristics. Although these meta-heuristics are successful in dealing with optimization problems,
both face with some critical defects. These paper lists some of these problems and explains how
can eliminate these by utilizing good properties of these two methods in a hybrid way.
International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014
79
According to these, this research propose a hybrid version of ACO in which ants act as greedy
genetic operator. Experimental results show that proposed method hybrid method with these
smart ants has better performance in both factors of speed and accuracy.
REFERENCES
[1] Lei, Wang & Dun-bing,Tang, (2011) “An Improved Adaptive Genetic Algorithm Based on Hormone
ModulationMechanism for Job-shop Scheduling Problem”, Expert Systems with Applications, Vol.
38, pp7243-7250.
[2] Hassan, Ismkhan & Kamran Zamanifar, (2012) “Developing Improved Greedy Crossover to Solve
Symmetric Traveling Salesman Problem”, International Journal of Computer Science Issues, Vol. 9,
No. 5, pp121-126.
[3] Hassan, Ismkhan. & Kamran Zamanifar, (2013) “Study of Some Recent Crossovers Effects on Speed
and Accuracy of Genetic Algorithm”, using Symmetric Travelling Salesman Problem”, International
Journal of Computer Applications, Vol. 80, No. 6, pp0975 – 8887.
[4] TSPLIB,http://www.iwr.uniheidelberg.de/groups/comopt/software/TSPLIB95/.
[5] C, Blum& M. Sampels, (2004) “An ant colony optimization algorithm for shop scheduling problems”,
Journal of mathematical modelling and algorithms,Vol. 3, No. 3pp285-308.
[6] C,Y. Lee& Z, Lee&S,W. Lin&K, C. Ying, (2010) “An enhanced ant colony optimization (eaco)
applied to capacitated vehicle routing problem”, Applied intelligence Vol. 32, pp 88-95.
[7] Hassan, Ismkhan & Kamran Zamanifar, (2010) “Using Ants as a Genetic Crossover Operator in GLS
to Solve STSP”, International Conference of Soft Computing and Pattern Recognition, pp 344-348.
[8] Yuichi, Nagata&Shigenobu,Kobayashi, (2012) “A Powerful Genetic Algorithm UsingEdge Assembly
Crossover for theTraveling Salesman Problem”
[9] L,Ke& Z, Feng& Z,Ren& X, Wei, (2011) “An ant colony optimization approach for the
multidimensional knapsack problem”, Journal of heuristics Vol. 16, No.1pp65-83.
[10] Yuren Zhou, (2009), “Runtime Analysis of an Ant Colony OptimizationAlgorithm for TSPInstances”,
IEEE transactions on evolutionary computation, Vol. 13, No. 5, pp 1083-1092.
[11] J. Xiao &L,P. Li, (2011) “A hybrid ant colony optimization for continuous domains, Expert systems
with applications”, Vol. 38,pp11072-11077.
[12] W, Tfaili& P,Siarry,(2008) “A new charged ant colony algorithm for continuous dynamic
optimization”, Applied mathematics and computation,Vol. 197,pp604-613.
[13] Thomas, Stützle&Holger, H. Hoos, (2000) “MAX-MIN Ant system”, Future Generation Computer
Systems archive, Vol. 16, Issue 9, pp 889-914.
[14] Dirk, Thierens, (2002) “Adaptive mutation rate control schemes in genetic algorithms”, CEC '02.
Proceedings of the 2002 Congress on Evolutionary Computation.
[15] Ziauddin , Ursania& Daryl, Essam& David, Cornforth & Robert, Stocker, (2011) “Localized genetic
algorithm for vehicle routing problem with time windows”, Applied Soft Computing, Vol. 11,
pp5375–5390.
[16] Ping-Hung Tang & Ming-Hseng Tseng, (2013), “Adaptive directed mutation for real-coded genetic
algorithms”, Applied Soft Computing, Vol. 13, pp 600–614.
[17] Zhang Jinhua&ZhuangJian& Du Haifeng& Wang Sun’an, (2009), "Self-organizing genetic algorithm
based tuning of PID controllers", Information Sciences, Vol. 179, pp 1007–1018.
Authors
Hassan Ismkhan is instructor at the University of Bonab.

Contenu connexe

Tendances

Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...
Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...
Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...Tarek Gaber
 
Using AI Planning to Automate the Performance Analysis of Simulators
Using AI Planning to Automate the Performance Analysis of SimulatorsUsing AI Planning to Automate the Performance Analysis of Simulators
Using AI Planning to Automate the Performance Analysis of SimulatorsRoland Ewald
 
Boosted Tree-based Multinomial Logit Model for Aggregated Market Data
Boosted Tree-based Multinomial Logit Model for Aggregated Market DataBoosted Tree-based Multinomial Logit Model for Aggregated Market Data
Boosted Tree-based Multinomial Logit Model for Aggregated Market DataJay (Jianqiang) Wang
 
ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...
ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...
ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...ijitcs
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Solving practical economic load dispatch problem using crow search algorithm
Solving practical economic load dispatch problem using crow search algorithm Solving practical economic load dispatch problem using crow search algorithm
Solving practical economic load dispatch problem using crow search algorithm IJECEIAES
 
Machine vision system for the automatic segmentation of plants under differen...
Machine vision system for the automatic segmentation of plants under differen...Machine vision system for the automatic segmentation of plants under differen...
Machine vision system for the automatic segmentation of plants under differen...Mehran Mesbahzadeh
 
The Odd Generalized Exponential Log Logistic Distribution
The Odd Generalized Exponential Log Logistic DistributionThe Odd Generalized Exponential Log Logistic Distribution
The Odd Generalized Exponential Log Logistic Distributioninventionjournals
 
Parallel hybrid chicken swarm optimization for solving the quadratic assignme...
Parallel hybrid chicken swarm optimization for solving the quadratic assignme...Parallel hybrid chicken swarm optimization for solving the quadratic assignme...
Parallel hybrid chicken swarm optimization for solving the quadratic assignme...IJECEIAES
 

Tendances (10)

Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...
Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...
Feature Selection Method Based on Chaotic Maps and Butterfly Optimization Alg...
 
Using AI Planning to Automate the Performance Analysis of Simulators
Using AI Planning to Automate the Performance Analysis of SimulatorsUsing AI Planning to Automate the Performance Analysis of Simulators
Using AI Planning to Automate the Performance Analysis of Simulators
 
Data Modelling
Data ModellingData Modelling
Data Modelling
 
Boosted Tree-based Multinomial Logit Model for Aggregated Market Data
Boosted Tree-based Multinomial Logit Model for Aggregated Market DataBoosted Tree-based Multinomial Logit Model for Aggregated Market Data
Boosted Tree-based Multinomial Logit Model for Aggregated Market Data
 
ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...
ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...
ADAPTIVESYNCHRONIZER DESIGN FOR THE HYBRID SYNCHRONIZATION OF HYPERCHAOTIC ZH...
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Solving practical economic load dispatch problem using crow search algorithm
Solving practical economic load dispatch problem using crow search algorithm Solving practical economic load dispatch problem using crow search algorithm
Solving practical economic load dispatch problem using crow search algorithm
 
Machine vision system for the automatic segmentation of plants under differen...
Machine vision system for the automatic segmentation of plants under differen...Machine vision system for the automatic segmentation of plants under differen...
Machine vision system for the automatic segmentation of plants under differen...
 
The Odd Generalized Exponential Log Logistic Distribution
The Odd Generalized Exponential Log Logistic DistributionThe Odd Generalized Exponential Log Logistic Distribution
The Odd Generalized Exponential Log Logistic Distribution
 
Parallel hybrid chicken swarm optimization for solving the quadratic assignme...
Parallel hybrid chicken swarm optimization for solving the quadratic assignme...Parallel hybrid chicken swarm optimization for solving the quadratic assignme...
Parallel hybrid chicken swarm optimization for solving the quadratic assignme...
 

En vedette

Siam@ Siam Design Hotel
Siam@ Siam  Design  HotelSiam@ Siam  Design  Hotel
Siam@ Siam Design HotelTom Aikins
 
Activism x Technology
Activism x TechnologyActivism x Technology
Activism x TechnologyWebVisions
 
The Near Future of CSS
The Near Future of CSSThe Near Future of CSS
The Near Future of CSSRachel Andrew
 
How to Battle Bad Reviews
How to Battle Bad ReviewsHow to Battle Bad Reviews
How to Battle Bad ReviewsGlassdoor
 
Classroom Management Tips for Kids and Adolescents
Classroom Management Tips for Kids and AdolescentsClassroom Management Tips for Kids and Adolescents
Classroom Management Tips for Kids and AdolescentsShelly Sanchez Terrell
 
The Buyer's Journey - by Chris Lema
The Buyer's Journey - by Chris LemaThe Buyer's Journey - by Chris Lema
The Buyer's Journey - by Chris LemaChris Lema
 
The Presentation Come-Back Kid
The Presentation Come-Back KidThe Presentation Come-Back Kid
The Presentation Come-Back KidEthos3
 

En vedette (7)

Siam@ Siam Design Hotel
Siam@ Siam  Design  HotelSiam@ Siam  Design  Hotel
Siam@ Siam Design Hotel
 
Activism x Technology
Activism x TechnologyActivism x Technology
Activism x Technology
 
The Near Future of CSS
The Near Future of CSSThe Near Future of CSS
The Near Future of CSS
 
How to Battle Bad Reviews
How to Battle Bad ReviewsHow to Battle Bad Reviews
How to Battle Bad Reviews
 
Classroom Management Tips for Kids and Adolescents
Classroom Management Tips for Kids and AdolescentsClassroom Management Tips for Kids and Adolescents
Classroom Management Tips for Kids and Adolescents
 
The Buyer's Journey - by Chris Lema
The Buyer's Journey - by Chris LemaThe Buyer's Journey - by Chris Lema
The Buyer's Journey - by Chris Lema
 
The Presentation Come-Back Kid
The Presentation Come-Back KidThe Presentation Come-Back Kid
The Presentation Come-Back Kid
 

Similaire à Accelerating the ant colony optimization by

An optimal design of current conveyors using a hybrid-based metaheuristic alg...
An optimal design of current conveyors using a hybrid-based metaheuristic alg...An optimal design of current conveyors using a hybrid-based metaheuristic alg...
An optimal design of current conveyors using a hybrid-based metaheuristic alg...IJECEIAES
 
An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...Zac Darcy
 
An Automatic Clustering Technique for Optimal Clusters
An Automatic Clustering Technique for Optimal ClustersAn Automatic Clustering Technique for Optimal Clusters
An Automatic Clustering Technique for Optimal ClustersIJCSEA Journal
 
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...Zac Darcy
 
The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...
The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...
The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...IJECEIAES
 
A hybrid sine cosine optimization algorithm for solving global optimization p...
A hybrid sine cosine optimization algorithm for solving global optimization p...A hybrid sine cosine optimization algorithm for solving global optimization p...
A hybrid sine cosine optimization algorithm for solving global optimization p...Aboul Ella Hassanien
 
The New Hybrid COAW Method for Solving Multi-Objective Problems
The New Hybrid COAW Method for Solving Multi-Objective ProblemsThe New Hybrid COAW Method for Solving Multi-Objective Problems
The New Hybrid COAW Method for Solving Multi-Objective Problemsijfcstjournal
 
COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...
COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...
COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...csandit
 
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...IAEME Publication
 
Performance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch ProblemPerformance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch ProblemIOSR Journals
 
An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...
An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...
An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...IJRESJOURNAL
 
Combinational circuit designer using 2D Genetic Algorithm
Combinational circuit designer using 2D Genetic AlgorithmCombinational circuit designer using 2D Genetic Algorithm
Combinational circuit designer using 2D Genetic AlgorithmVivek Maheshwari
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...AIRCC Publishing Corporation
 
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...AIRCC Publishing Corporation
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...ijcsit
 
Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing
Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing
Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing IJECEIAES
 
Genetic algorithm guided key generation in wireless communication (gakg)
Genetic algorithm guided key generation in wireless communication (gakg)Genetic algorithm guided key generation in wireless communication (gakg)
Genetic algorithm guided key generation in wireless communication (gakg)IJCI JOURNAL
 
ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...
ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...
ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...ijcsit
 
IRJET - Movie Genre Prediction from Plot Summaries by Comparing Various C...
IRJET -  	  Movie Genre Prediction from Plot Summaries by Comparing Various C...IRJET -  	  Movie Genre Prediction from Plot Summaries by Comparing Various C...
IRJET - Movie Genre Prediction from Plot Summaries by Comparing Various C...IRJET Journal
 
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...Xin-She Yang
 

Similaire à Accelerating the ant colony optimization by (20)

An optimal design of current conveyors using a hybrid-based metaheuristic alg...
An optimal design of current conveyors using a hybrid-based metaheuristic alg...An optimal design of current conveyors using a hybrid-based metaheuristic alg...
An optimal design of current conveyors using a hybrid-based metaheuristic alg...
 
An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...
 
An Automatic Clustering Technique for Optimal Clusters
An Automatic Clustering Technique for Optimal ClustersAn Automatic Clustering Technique for Optimal Clusters
An Automatic Clustering Technique for Optimal Clusters
 
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
 
The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...
The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...
The Effect of Updating the Local Pheromone on ACS Performance using Fuzzy Log...
 
A hybrid sine cosine optimization algorithm for solving global optimization p...
A hybrid sine cosine optimization algorithm for solving global optimization p...A hybrid sine cosine optimization algorithm for solving global optimization p...
A hybrid sine cosine optimization algorithm for solving global optimization p...
 
The New Hybrid COAW Method for Solving Multi-Objective Problems
The New Hybrid COAW Method for Solving Multi-Objective ProblemsThe New Hybrid COAW Method for Solving Multi-Objective Problems
The New Hybrid COAW Method for Solving Multi-Objective Problems
 
COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...
COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...
COMPARING THE CUCKOO ALGORITHM WITH OTHER ALGORITHMS FOR ESTIMATING TWO GLSD ...
 
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
 
Performance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch ProblemPerformance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch Problem
 
An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...
An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...
An Improved Adaptive Multi-Objective Particle Swarm Optimization for Disassem...
 
Combinational circuit designer using 2D Genetic Algorithm
Combinational circuit designer using 2D Genetic AlgorithmCombinational circuit designer using 2D Genetic Algorithm
Combinational circuit designer using 2D Genetic Algorithm
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
 
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
 
Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing
Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing
Ant Colony Optimization for Optimal Low-Pass State Variable Filter Sizing
 
Genetic algorithm guided key generation in wireless communication (gakg)
Genetic algorithm guided key generation in wireless communication (gakg)Genetic algorithm guided key generation in wireless communication (gakg)
Genetic algorithm guided key generation in wireless communication (gakg)
 
ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...
ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...
ANALYSINBG THE MIGRATION PERIOD PARAMETER IN PARALLEL MULTI-SWARM PARTICLE SW...
 
IRJET - Movie Genre Prediction from Plot Summaries by Comparing Various C...
IRJET -  	  Movie Genre Prediction from Plot Summaries by Comparing Various C...IRJET -  	  Movie Genre Prediction from Plot Summaries by Comparing Various C...
IRJET - Movie Genre Prediction from Plot Summaries by Comparing Various C...
 
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
 

Dernier

Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...itnewsafrica
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integrationmarketing932765
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesBernd Ruecker
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 

Dernier (20)

Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architectures
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 

Accelerating the ant colony optimization by

  • 1. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 DOI:10.5121/ijcsa.2014.4208 73 Accelerating The Ant Colony Optimization By Smart Ants, Using Genetic Operator Hassan Ismkhan Department of Computer Engineering, University of Bonab, Bonab, East Azerbaijan, Iran ABSTRACT This paper research review Ant colony optimization (ACO) and Genetic Algorithm (GA), both are two powerful meta-heuristics. This paper explains some major defects of these two algorithm at first then proposes a new model for ACO in which, artificial ants use a quick genetic operator and accelerate their actions in selecting next state. Experimental results show that proposed hybrid algorithm is effective and its performance including speed and accuracy beats other version. KEYWORDS Ant Colony Optimization, Genetic Algorithm, Genetic Operator, Speeding up 1. INTRODUCTION The versions of ACO have been successfully applied to type of combinatorial optimization problem same as scheduling problems [5], routing problems [6] and knapsack problem [9]. The ACO is also successful in dealing with continuous optimization problems [11] [12]. However time complexity of ACO is Ω (N2 ) which is too high [10] and prevents applicability of ACO for large scale problems. In other hand, versions of Genetic Algorithm (GA) which is one of the most important type of meta-heuristics, have been also applied to combinatorial and continues optimization problems. The types of GA have solved scheduling problems [1], knapsack problems [14] and routing problems [15] which all are combinatorial optimization problems. GAs also have been successfully applied to continuous optimization problems such as function optimization [16] [17]. Although GA and ACO are successful meta-heuristics, both have their own bottlenecks. Considering defect points of GA and ACO will help us to design effective frameworks. GA has powerful population-based search engine which can explore new regions of answer area, instead its exploitation ability dramatically comes down when appropriate operators is not used in body of GA. It should be considered that designing new operators for GA needs more invention. Operators should have enough speed and should increase exploitation ability of GA, where population of GA grant exploration ability of GA. ACO usually uses small group of artificial ants to make solutions. In addition, ACO uses additional information in its baseline algorithm which is known as pheromone trails. Pheromone update by ants and help ants to find better solutions. Although using pheromone causes appropriate level of exploitation, these additional information decrease exploration ability of algorithm and led to local trap problem.
  • 2. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 74 There are some research attempt to use and merge benefits of both GA and ACO [7]. This paper also proposes effective model of merging ACO and GA which has appropriate speed and accuracy. Therefore the rest of paper scheduled as, next section reviews GA and ACO briefly, section 3 propose our method, section 4 puts forward experimental results and finally section 5 summarizes paper. 2. GA AND ACO, BRIEF REVIEW OF THEIR ALGORITHMS The case study of this research is Travelling Salesman Problem (TSP). TSP is finding minimum Hamilton tour in withed graph. Also in this section, both GA and ACO are explained by using TSP. 2.1. ACO Ant System (AS) is first version of ACO. In AS, in each step, m artificial ants locate on m different start nodes and begin to construct their tours in n sub-steps, where n is the number of nodes in graph. Each ant to select next node uses a rule which is named transition rule and is defined as below: p (r, s) = [τ( , )] .[η( , )]β ∑ [τ( , )] .[η( , )]β ∈ ( ) if s ∈ J (r) 0 herwise (1) Where p (r, s) is probability of a choosing node s after node r by ant k, J (r) is the set of unvisited nodes of ant k, ( , ) = 1/ ( , ) and ( , ) is pheromone amount of rs.The β andα are parameters. When each ant completes its tour, tries to update pheromone value by below equation which is named pheromone update rule. ( , ) ← (1 − ). ( , ) + ∑ ∆ ( , ) (2) Where ∆ ( , ) = , ( , ) 0, ℎ Ant Colony System (ACS) is another versions of ACO which add another rule in which ants after each sub-step update pheromone locally when select their next node. This rule is named local pheromone update rule and implemented by below equation. ( , ) ← (1 − ). ( , ) + . (3) In ACS transition rule uses below eqution: S = arg max ∈ ( ){[τ(r, u)] . [η(r, u)]β} , if q ≤ q use (1) , otherwise (4) Max-Min Ant System is another version of ACO in which pheromone value are bounded between a max and min value. Both methodologies in ACS and MMAS help ACO to escape from local optima traps [13]. The baseline algorithm for ACO is as figure 1.
  • 3. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 75 For I = 1 to MAX-Number-of-Iteration Locate m ants on m different nodes For J = 1 to N (N is the number of nodes in graph) For each ant Select next node according to (4) Update pheromone locally by (2) End For Update pheromone globally by (3) End For Figure 1. ACO algorithm 2.2. GA GA usually starts with population of random solutions. In each step, new solutions are generated by operators. These operators select and take one or more solutions from population and produce new solution according to selected solutions. There are two types of operator for GA: mutation operator and crossover operator. Mutation operator, takes a solution and changes it. This operator helps GA to prevent increasing similar solutions in population. This is a benefit, because similar solutions in population causes premature convergence and local optima problems. The Double-Bridge is one of the most famous mutation for TSP solver GAs. Figure 2 shows Double-Bridge operator. Figure 2. The Double-Bridge operator: Part (A) Shows how Double-Bridge works, Part (B) Shows an example for Double-Bridge In other hand, crossover operator takes two solutions usually are named parent, and produces one or two solutions according to (similar to) parents which are named children or offspring. Paper [3] reviews some of recent crossover operators. There are some accurate crossover operators same as EAX [8] but its time complexity is o(n2 ) which is too slow. Here we point to Improved Greedy Crossover which has o(n) time complexity [7]. To explain IGX, please consider a graph with 8 nodes that its edges cost are in matrix of figure 4. Figure 5 shows how IGX constructs child according to the two parents as 1-6-8-4-5-7-3-2 and 6-2-4-8-5-1-7-3. 1 2 3 4 5 6 7 8 1 0 12 19 31 22 17 23 12 2 12 0 15 37 21 28 35 22 3 19 15 0 50 36 35 35 21 4 31 37 50 0 20 21 37 38 5 22 21 36 20 0 25 40 33 6 17 28 35 21 25 0 16 18 7 23 35 35 37 40 16 0 14 8 12 22 21 38 33 18 14 0 Figure 3. The cost matrix of a graph with 8 nodes
  • 4. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 76 Use Fig.2’s father and mother: Step 0: Double-linked list construction Step 3: Select 3’th node Among 7, 8, 1 and 2, 1 is closer to 5 so it selected as next node. child: 4 5 1 lists updating: Eliminates two pointers that point to 1. Step 1: First node selection: It is selected randomly. Please suppose it is 4. child: 4 Lists updating: Eliminates two pointers that point to 4. Step 2: Select 2’th node Among 5, 8, 8 and 2, 5 is closer to 4 so it selected as next node. child: 4 5 Lists updating: Eliminates two pointers that point to 5. Step 4: Select 4’th node Among 2, 6, 7 and 8, 2 is closer to 1 so it selected as next node. child: 4 5 1 2 Lists updating: Eliminates two pointers that point to 2. Figure 4. IGX [2] GA, itself has two important types: generational GA and steady state GA. In generational GA, in each generation, new produced solutions (which are produced by mutation or crossover operators) are added to population and after some generations, the size of population normalized by eliminating solutions with low fitness. In steady state GA, in each generation, new solution is replaced by one of solution in population. Figure 6 shows baseline algorithm of both generational and steady state GA. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 76 Use Fig.2’s father and mother: Step 0: Double-linked list construction Step 3: Select 3’th node Among 7, 8, 1 and 2, 1 is closer to 5 so it selected as next node. child: 4 5 1 lists updating: Eliminates two pointers that point to 1. Step 1: First node selection: It is selected randomly. Please suppose it is 4. child: 4 Lists updating: Eliminates two pointers that point to 4. Step 2: Select 2’th node Among 5, 8, 8 and 2, 5 is closer to 4 so it selected as next node. child: 4 5 Lists updating: Eliminates two pointers that point to 5. Step 4: Select 4’th node Among 2, 6, 7 and 8, 2 is closer to 1 so it selected as next node. child: 4 5 1 2 Lists updating: Eliminates two pointers that point to 2. Figure 4. IGX [2] GA, itself has two important types: generational GA and steady state GA. In generational GA, in each generation, new produced solutions (which are produced by mutation or crossover operators) are added to population and after some generations, the size of population normalized by eliminating solutions with low fitness. In steady state GA, in each generation, new solution is replaced by one of solution in population. Figure 6 shows baseline algorithm of both generational and steady state GA. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 76 Use Fig.2’s father and mother: Step 0: Double-linked list construction Step 3: Select 3’th node Among 7, 8, 1 and 2, 1 is closer to 5 so it selected as next node. child: 4 5 1 lists updating: Eliminates two pointers that point to 1. Step 1: First node selection: It is selected randomly. Please suppose it is 4. child: 4 Lists updating: Eliminates two pointers that point to 4. Step 2: Select 2’th node Among 5, 8, 8 and 2, 5 is closer to 4 so it selected as next node. child: 4 5 Lists updating: Eliminates two pointers that point to 5. Step 4: Select 4’th node Among 2, 6, 7 and 8, 2 is closer to 1 so it selected as next node. child: 4 5 1 2 Lists updating: Eliminates two pointers that point to 2. Figure 4. IGX [2] GA, itself has two important types: generational GA and steady state GA. In generational GA, in each generation, new produced solutions (which are produced by mutation or crossover operators) are added to population and after some generations, the size of population normalized by eliminating solutions with low fitness. In steady state GA, in each generation, new solution is replaced by one of solution in population. Figure 6 shows baseline algorithm of both generational and steady state GA.
  • 5. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 77 Initial population; Forgen-num = 1 to Max-Gen while(some conditions) select individuals to apply crossover; apply crossover and generate individual(s); if(random number < MR) mutate new individual(s); Add new individuals to population; End While Remove extra individuals from population; End For Generational GA Initial population; For gen-num = 1 to Max-Gen select individuals to apply crossover; apply crossover and generate individual(s); mutate new individual(s); Replace new individual(s) with some ones from population End For Steady state GA Figure 5. The two types of GA 3. PROPOSED SMART ANT As you see in previous section, IGX selects one edge with lowest cost among four edges. Proposed smart ant are designed same as IGX, instead probing costs of four edges, probes results of transition rule of ACS which stated in equation 5. S = arg max ∈ [τ(r, u)] . [η(r, u)]β , if q ≤ q use (6) , otherwise (5) p (r, s) = [τ( , )] .[η( , )]β ∑ [τ( , )] .[η( , )]β ∈ if s ∈ 0 herwise (6) Where all notations in (5) and (6) are same as (1) and (4) and PC is set of all four nodes which are neighbour of current node in both parents. Please consider that proposed hybrid algorithm consider a population of solutions and in each step, smart ant which operates as IGX, takes two solutions from population, and produce new child. In this process, smart ant considers equation 6 instead of cost of edges. Initial population; For gen-num = 1 to Max-Gen Assign two solution for each ant For each ant For I = 1 to N Select next node according to 5 Update pheromone locally End For //Solution of this ant is now completed Apply 2-Opt [13] local search on solution of this ant Update pheromone globally by equation 3 End For Figure 6. Proposed hybrid ACO with smart ants
  • 6. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 78 4. EXPERIMENTAL RESULTS To probe performance of Hybrid-ACO-with-Smart-Ant (proposed method), call it HACO-SA, we set up an experiment in which HACO-SA competed with MMAS to solve instance selected from TSPLIB [5]. We ran this experiment on 2.40 GHz Intel CPU with 1 GB of random access memory. All algorithm were implemented by c++ programming language. Experimental results show that accuracy of HACO-SA is as well as MMAS, however speed of HACO-SA is more than MMAS. Table 1 shows average (the number of runs was 30) cost of solutions gained by each algorithm. As can been seen in table I, HACO-SA even has better solutions in average and for last four instances completely overcomes MMAS. Table 1. Average costs, computed by each algorithm per each instance. Average cost MMAS HACO-SA eil51 426 426 eil76 538 538 kroA100 21282 21283.5 lin105 14379 14410.29 d198 15883.12 15983.5 lin318 42267.5 42219.33 pcb442 51010.233 50907.15 att532 27837.11 27761.3 rat783 8899.3 8851.21 Table 2 shows speed of HACO-SA is better than MMAS for last four instances. Also for lin105, HACO-SA is quick than MMAS. Table 2. Average time Average time MMAS HACO-SA eil51 1.4887767 1.759 eil76 1.8801767 2.27605 kroA100 3.859565 4.1837 lin105 4.4618017 3.16685 d198 9.13653 10.13775 lin318 19.974383 15.9019 pcb442 16.971528 16.46665 att532 46.208823 34.2132 rat783 46.455887 36.1391 5. CONCLUSIONS This paper reviews GA and ACO algorithms which both are two important types of meta- heuristics. Although these meta-heuristics are successful in dealing with optimization problems, both face with some critical defects. These paper lists some of these problems and explains how can eliminate these by utilizing good properties of these two methods in a hybrid way.
  • 7. International Journal on Computational Sciences & Applications (IJCSA) Vol.4, No.2, April 2014 79 According to these, this research propose a hybrid version of ACO in which ants act as greedy genetic operator. Experimental results show that proposed method hybrid method with these smart ants has better performance in both factors of speed and accuracy. REFERENCES [1] Lei, Wang & Dun-bing,Tang, (2011) “An Improved Adaptive Genetic Algorithm Based on Hormone ModulationMechanism for Job-shop Scheduling Problem”, Expert Systems with Applications, Vol. 38, pp7243-7250. [2] Hassan, Ismkhan & Kamran Zamanifar, (2012) “Developing Improved Greedy Crossover to Solve Symmetric Traveling Salesman Problem”, International Journal of Computer Science Issues, Vol. 9, No. 5, pp121-126. [3] Hassan, Ismkhan. & Kamran Zamanifar, (2013) “Study of Some Recent Crossovers Effects on Speed and Accuracy of Genetic Algorithm”, using Symmetric Travelling Salesman Problem”, International Journal of Computer Applications, Vol. 80, No. 6, pp0975 – 8887. [4] TSPLIB,http://www.iwr.uniheidelberg.de/groups/comopt/software/TSPLIB95/. [5] C, Blum& M. Sampels, (2004) “An ant colony optimization algorithm for shop scheduling problems”, Journal of mathematical modelling and algorithms,Vol. 3, No. 3pp285-308. [6] C,Y. Lee& Z, Lee&S,W. Lin&K, C. Ying, (2010) “An enhanced ant colony optimization (eaco) applied to capacitated vehicle routing problem”, Applied intelligence Vol. 32, pp 88-95. [7] Hassan, Ismkhan & Kamran Zamanifar, (2010) “Using Ants as a Genetic Crossover Operator in GLS to Solve STSP”, International Conference of Soft Computing and Pattern Recognition, pp 344-348. [8] Yuichi, Nagata&Shigenobu,Kobayashi, (2012) “A Powerful Genetic Algorithm UsingEdge Assembly Crossover for theTraveling Salesman Problem” [9] L,Ke& Z, Feng& Z,Ren& X, Wei, (2011) “An ant colony optimization approach for the multidimensional knapsack problem”, Journal of heuristics Vol. 16, No.1pp65-83. [10] Yuren Zhou, (2009), “Runtime Analysis of an Ant Colony OptimizationAlgorithm for TSPInstances”, IEEE transactions on evolutionary computation, Vol. 13, No. 5, pp 1083-1092. [11] J. Xiao &L,P. Li, (2011) “A hybrid ant colony optimization for continuous domains, Expert systems with applications”, Vol. 38,pp11072-11077. [12] W, Tfaili& P,Siarry,(2008) “A new charged ant colony algorithm for continuous dynamic optimization”, Applied mathematics and computation,Vol. 197,pp604-613. [13] Thomas, Stützle&Holger, H. Hoos, (2000) “MAX-MIN Ant system”, Future Generation Computer Systems archive, Vol. 16, Issue 9, pp 889-914. [14] Dirk, Thierens, (2002) “Adaptive mutation rate control schemes in genetic algorithms”, CEC '02. Proceedings of the 2002 Congress on Evolutionary Computation. [15] Ziauddin , Ursania& Daryl, Essam& David, Cornforth & Robert, Stocker, (2011) “Localized genetic algorithm for vehicle routing problem with time windows”, Applied Soft Computing, Vol. 11, pp5375–5390. [16] Ping-Hung Tang & Ming-Hseng Tseng, (2013), “Adaptive directed mutation for real-coded genetic algorithms”, Applied Soft Computing, Vol. 13, pp 600–614. [17] Zhang Jinhua&ZhuangJian& Du Haifeng& Wang Sun’an, (2009), "Self-organizing genetic algorithm based tuning of PID controllers", Information Sciences, Vol. 179, pp 1007–1018. Authors Hassan Ismkhan is instructor at the University of Bonab.