SlideShare a Scribd company logo
1 of 8
Download to read offline
TELKOMNIKA, Vol 16, No 1: February 2018, pp. 424~431
ISSN: 1693-6930, accredited A by DIKTI, Decree No: 58/DIKTI/Kep/2013
DOI: 10.12928/TELKOMNIKA.v16i1.4752  424
Received November 20, 2016; Revised January 12, 2018; Accepted January 21, 2018
Modified Discrete Firefly Algorithm Combining Genetic
Algorithm for Traveling Salesman Problem
Lin Teng, Hang Li*
Software College, Shenyang Normal University, Shenyang, P.C 110034–China
*Corresponding author, e-mail: lihangsoft@163.com
Abstract
The Firefly Algorithm (FA) has a few disadvantages in solving the constrained global optimization
problem, including that it is difficult to produce initial population, the size of relative attractiveness has
nothing to do with the absolute brightness of fireflies, the inertia weight does not take full advantage of the
information of objective function, and it cannot better control and constrain the mobile distance of firefly. In
this paper, we propose a novel method based on discrete firefly algorithm combining genetic algorithm for
traveling salesman problem. We redefine the distance of firefly algorithm by introducing swap operator and
swap sequence to avoid algorithm easily falling into local solution and accelerate convergence speed. In
addition, we adopt dynamic mechanism based on neighborhood search algorithm. Finally, the comparison
experiment results show that the novel algorithm can search perfect solution within a short time, and
greatly improve the effectiveness of solving the traveling salesman problem, it also significantly improves
computing speed and reduces iteration number.
Keywords: firefly algorithm, traveling salesman problem, genetic algorithm, neighborhood search
algorithm
Copyright © 2018 Universitas Ahmad Dahlan. All rights reserved.
1. Introduction
Traveling salesman problem (it is abbreviated in TSP) [1] is an important combinational
optimization problem in the area of mathematics. It belongs to Non-Deterministic Polynomial
(NP) problem. Although there are some precise algorithms which can be used to solve the
problem, the principle of precise algorithms is complex, and it can produce “combination
explosion problem” along with the increase number of city, therefore, the domestic and foreign
scholars have been trying to seek a highly efficient and stable algorithm for solving this complex
problem. For small size TSP [2], Branch and bound method, greedy method and cutting plane
method are often used to solve these problems. But for big size TSP, it is difficult to use above
methods. Therefore, the domestic and foreign scholars have been trying to seek a highly
efficient and stable algorithm for solving this complex problem. Firefly algorithm (FA) [3] is one
of heuristic search algorithms based on swarm intelligence, which was proposed by YANG [4] in
2010. FA [5] is based on the self-organization of the swarm simulation model with the
advantages of less setting parameters, strong robustness, and has been applied in many fields.
Li et al. [6] showed that firefly algorithm was introduced to solve this problem, and a series of
discrete operations were conducted to adapt to it. Yin et al. [7] proposed discrete artificial bee
colony algorithm for TSP. Zhang [8] presented a novel firefly algorithm for solving the nonlinear
equations problem.
The above methods almost are used for solving continuous domain optimization
problems. However, FA is relatively few used in the aspect of discrete domain application. To
improve the performance of TSP solution, we propose improved discrete FA through redefining
distance of firefly algorithm by introducing swap operator and swap sequence which better
coordinates and balances the search process of FA algorithm. To facilitate the description, this
paper also gives some definitions. We present a new discrete FA with genetic algorithm (GA) for
traveling salesman problem. This new scheme takes neighborhood search algorithm into
consideration. Finally, we conduct some experiments to verify its performance. The results show
that the new algorithm has a good effect on solving TSP.
TELKOMNIKA ISSN: 1693-6930 
Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li)
425
2. The Firefly Algorithm
Fireflies emit fluorescence signal in the nature. From the point of biology view, its role is
to attract the opposite sex and get copulation, reproduction chance, sometimes for predation.
Firefly uses fluorescence signal within a certain range to attract companion in FA, eventually it
makes most fireflies gather in one or more locations, and realize the position optimization.
Fireflies attract companies mainly depending on fluorescence intensity and attraction
degree. Fluorescence intensity depends on the target value of its own location. The better target
value is, the high fluorescence intensity is. Attraction degree has closely relationship with
fluorescence intensity. Brighter fireflies have higher attraction intensity, which can attract weaker
fireflies moving towards to it. In addition, it should take physical properties into consideration in
FA. Fluorescence intensity and attraction degree are in inverse proportion of the distance
among fireflies. Namely, fluorescence intensity and attraction degree will decrease with the
increase of distance.
Fireflies mainly obey the following rules:
a. firefly moving direction is determined by the fluorescence intensity, it always move towards
to the brighter fireflies.
b. the firefly moving distance is determined by the attraction degree.
This paper defines firefly fluorescence intensity and attraction degree as follows.
Definition 1. I : Fluorescent brightness of fireflies.
ijr
eII

 0 (1)
Where ijr is the distance between firefly i and j .  is light intensity absorption
coefficient, it denotes that fluorescence gradually decreases with the increase of distance, it can
be set as a constant. 0I is fluorescent brightness of firefly when 0r . 0I not only is its own
fluorescence intensity, but is the maximum fluorescence intensity, which has relationship with
function value.
Definition 2. ij : Attraction degree of fireflies.
2
0
ijr
ij e



 (2)
Where 0 (maximum attraction degree) is attraction degree of firefly when 0r . According to
definition 1, every firefly uses roulette method to move towards to the individual with higher
fluorescence intensity. On the basis of definition 2, each firefly can determine the movement
distance. By constantly updating its location, it achieves the purpose of optimization.
Definition 3. Location updating formula of firefly i attracted by firefly j .
)5.0()(  randxxxx ijii  (3)
This formula is composed of three parts. First part, ix denotes current position of firefly
i . Second part, •xx ij )(  denotes the distance firefly i moving to j . Third part, there is
disturbance mechanism when location updating to avoid fireflies prematurely falling into local
optimal solution. ]1,0[ is step length factor. ]1,0[rand is random factor and obeys
uniform distribution.
3. The Modified Firefly Algorithm for TSP
We first use genetic algorithm to initialize population generation. Assuming that initial
group size is m , and it randomly generates m individuals. The i-th is
t
iX . For each individual,
 ISSN: 1693-6930
TELKOMNIKA Vol 16, No 1: February 2018 : 424 – 431
426
it determines the index set tS and tT . }1,0)(|{ ljXgjT t
iit 
and }1,0)(|{ ljXgjS t
iit  , where tT and tS satisfy the constraint condition.
When we solve TSP by FA, we should know distance and light intensity absorption
coefficient. Then it updates location through formula (1,2,3) to realize optimizing. We apply
serial number coding method into FA to solve TSP in this paper. Because TSP is a
combinatorial optimization problem, we should first definite discrete variable distance, then we
present discrete variable location updating formula and its disturbance mechanism. Finally, we
give the solution step based on discrete firefly algorithm for solving TSP.
In this section, we introduce the following new definitions.
Definition 4. Assuming that solution sequence of n nodes TSP is )( iaS  , swap operator
),( 210 iiS is the point 1ia and 2ia in swap solution S . So ),( 210 iiSSS  is the new solution
after operation with swap operator.
Example 1. There is a five nodes TSP, its solution is )45312(S . Swap operator is
)3,2(0S . So )45132()3,2()45312(),( 0210  SiiSSS .
Definition 5. Ordered queue of one or multiple swap operators is called a swap sequence.
),,,( 21 nOOO SSSS  , nOOO SSS ,,, 21
 is swap operator.
Definition 6. Different swap sequences act on the sane solution that may generate the common
new solution. Therefore, all the same effect swap sequences set is called equivalent set of swap
sequence.
Definition 7. In the equivalent set of swap sequence, the swap sequence with minimum swap
operators is the basic swap sequence in equivalent set.
Space distance between fireflies can be calculated by Euclidean distance when solving
optimization problems of continuous variables. However, when solving TSP, solution is discrete
variable, so it cannot use Euclidean distance. In this paper, we definite space distance:
NAr / (4)
Where A is swap operator number of two fireflies in solution vector basic swap sequence.
N is the cities number. After getting r , fluorescent brightness of firefly can be calculated by
formula (1). Therefore, each firefly can move towards to other individuals with higher fluorescent
brightness based on roulette wheel method.
Firefly movement distance can be calculated according to attraction degree when
solving optimization problems of continuous variables. However, when solving TSP, movement
is discrete variable, so we definite the distance between firefly i and j :
),0int( ijij Arand (5)
Where ),0int( ijArand is random integer. ijA is swap operator number of two fireflies i and j
in solution vector basic swap sequence. ij is random swap operator number from 0 to ijA .
Location updating by formula (6):
ijii xx  (6)
When solving the TSP, in order to avoid the firefly algorithm falling into local optimum,
this paper defines the disturbance mechanism of discrete variables based on variable
neighborhood search algorithm. It adopts several neighborhood structure forms to search
optimization solution, systematacially changes its neighborhood so as to expand the search
scope, enhance the ability to jump out of local optimal.
In this paper, we adopt three neighborhood structures to solve TSP.
TELKOMNIKA ISSN: 1693-6930 
Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li)
427
a. Insert neighborhood. We randomly select different position x and y in solution sequence,
and insert the city in x into y , as ),( yxInsert .
b. Swap neighborhood. We randomly select different position x and y in solution sequence,
and exchange the cities in x and y , as ),( yxSwap .
c. 2-opt neighborhood. We use side ),( ji and )1,1(  ji to replace )1,( ii and
)1,( jj . This change will affect the direction of mid-edge ),1( ji  .
The detailed process of the proposed discrete firefly algorithm is as follows:
Step 1. Initializing the swarm. Set parameter firefly number m , light intensity absorption
coefficient  , maximum iteration number maxT .
Step 2. Randomly initializing solution sequence of each firefly. Calculating objective function iP
and maximum fluorescent brightness 0I .
ig PPI /0  (7)
Where gP is the current searched optimal solution.
Step 3. According to formula (1), (4), (5), (7), calculating relative brightness I of firefly and
attraction degree ij . So determine the movement direction and distance.
Step 4. According to formula (6), updating position of firefly.
Step 5. Choosing the three neighborhood in variable neighborhood search method based on a
certain probability. Repeat executing n iteration. Selecting position with optimal objective
function as the current position of firefly.
Step 6. According to updated position of firefly, re-compute objective function iP and make a
comparison with current optimal position gP . If function is better, then update gP .
Step 7. Whether the process satisfies termination conditions or not. If YES, then finish and
output results. If NO, return back step3.
4. Experiments and Results
4.1. The effect of Light Intensity Absorption Coefficient  on New Firefly Algorithm
The light intensity absorption coefficient  is the main parameter in new firefly algorithm
with GA (abbreviate in FGA). We make simulation experiments to analyze the effect of  on
performances of algorithm solution under the MATLAB platform. We adopt different  to
conduct experiments under the other same parameters conditions. Setting maximum iterations
500max T , number of firefly is 50m , the three neighborhood in variable neighborhood
search method are same: 3/1 , algorithm runs 30 times independently. Table1 records the
results with different  .
Table 1. Different  with Different Influences on FGA
r Best value
×103
Worst value
×103
Average value
×103
Standard deviation
×102
0.01 7.51443 8.48821 8.01094 2.34474
0.03 7.52443 8.48449 8.00774 2.07446
0.05 7.52466 8.58599 8.10785 2.48271
0.07 7.63768 8.68004 8.07167 2.38243
0.09 7.53436 8.59042 8.10332 2.17915
0.11 7.52436 8.69427 8.22529 3.19748
0.13 7.73988 8.78536 8.17088 2.49888
0.15 7.75758 8.86203 8.35733 2.68301
 ISSN: 1693-6930
TELKOMNIKA Vol 16, No 1: February 2018 : 424 – 431
428
From Table 1 we can know that when  gradually increases, the solution performance
is little-changed. When  =0.01, 0.02, 0.03, 0.04, 0.06, 0.09 and 0.11, FGA gets the best
solution, 7.53436×10
3
. And  =0.03, average value is 8.00774×10
3
and standard value
2.07446×10
2
which is the minimum value. But as a whole, when  =0.03, FA has a better
solving performance, which is the best value for FGA. The effect of different  on FA is not
obvious. So this is one of advantages for FGA.
4.2. The Comparison Experiment
In order to further verify the feasibility and effectiveness of this paper’s method, we
choose multiple instances in international universal test library for testing, and use testing
results to make a comparison to spanning tree algorithm (STA) [9], Improved Ant Colony
Optimization [10](IACO).
In the experiment, digit indicates number of cities. “O” shows calculation result of the
index is not given in the comparison literature. Experimental environment is the same as above.
Parameters set as follows: maximum number of iterations 2000max T , 03.0 ,
2:1:2:: 321 kkk , number of firefly 20m when city number is less than 48, otherwise
50m . The two algorithms run 20 times. Calculation results are as shown in Table 2.
Table 2. Calculation Results
Instance Calculation index IABC STA FA
Bays29
Best value 30.8788 30.8788 30.8788
Average value 30.8788 30.8788 30.8788
Iteration number 2000 200 200
Running time 5.11 O O
Oliver30
Best value 73.987 73.9875 73.9875
Average value 74.0079 74.0077 74.0075
Iteration number 2000 200 200
Running time 5.36 O O
Dantzig42
Best value 76.1236 76.1149 75.9098
Average value 75.3069 75.3069 75.3069
Iteration number 2000 200 200
Running time 8.95 O O
Eil51
Best value 431.25 428.88 426.01
Average value 444.19 431.01 427.50
Iteration number 2000 200 200
Running time 10.36 O O
Berlin52
Best value 7680.77 7554.38 7542.13
Average value 7941.26 7562.81 7573.49
Iteration number 2000 200 200
Running time 10.76 O O
From Table 2, STA algorithm gets the known optimal solutions in Berlin52, Oliver30 and
Eil51, which is close to FGA. But iteration number of FGA has reduced by 98percent. What’s
more, steps of FGA are not complicated. The average value has increased by 0.6% (Not
exceed 0.6%). Compared with IABC algorithm, the best value and average value is relatively
small, and for Bays29, Oliver30 and Dantzig42, the standard deviation is smaller. For the four
instances, the running time of FGA has saved by 97.1%, 98.2%, 98.8% and 98.99%
respectively.
FGA algorithm also can obtain the results closely to known optimal solutions for all
instances. For Oliver30 and Bays29, FGA algorithm gets the same results as known optimal
solutions. For Dantzig42, calculation result of FA algorithm has decreased by 19.3% compared
with IABC algorithm. Figure 1-3 show the experimental simulation diagram of Oliver30,
Dantzig42 and Berlin52.
The average value of FGA algorithm is relatively small compared with IABC algorithm
for Oliver30, Dantzig42 and Bays29. IABC algorithm is mainly based on the STA algorithm and
has combined with other operations. When the number of population in IABC is equal to that in
STA, the running time in IABC is closely to that of STA at least. Nevertheless, the running time
TELKOMNIKA ISSN: 1693-6930 
Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li)
429
in IACO is relatively long. Therefor, FGA algorithm has the better solution performance in terms
of solution time and solution quality compared with STA and IABC algorithm.
(a) Optimal path
(b) Best value evolution curve
Figure 1. Experimental simulation diagram of Oliver30
(a) Optimal path (b) Best value evolution curve
Figure 2. Experimental simulation diagram of Dantzig42
 ISSN: 1693-6930
TELKOMNIKA Vol 16, No 1: February 2018 : 424 – 431
430
(a) Optimal path
(b) Best value evolution curve
Figure 3. Experimental simulation diagram of Berlin52
5. Conclusion
This paper proposes a new discrete firefly algorithm for solving TSP problem. It extends
continuous artificial swarm (especially FA) optimization algorithm to discrete domain. The new
algorithm makes some definitions based on swap operator and swap sequence. It also adopts
disturbance strategy based on variable neighborhood search method to increase search areas
and improve the local refinement ability of the algorithm and the optimal speed. The
experimental results show that the algorithm can find relatively satisfactory solution in a short
time and improve the efficiency of solving the TSP. In the future, we would find more effective
firefly algorithms to improve optimum searching method and solve other combinatorial
optimization problems.
References
[1] Carrabs F, Cordeau J F, Laporte G. Variable neighborhood search for the pickup and delivery
traveling salesman problem with LIFO loading [J]. Informs Journal on Computing. 2015; 19(4): 618-
632 2007.
[2] Purbasari A, Suwardi I S, Santoso O S, et al. Data Partition and Communication On Parallel Heuristik
Model Based on Clonal Selection Algorithm [J]. TELKOMNIKA (Telecommunication, Computing,
Electronics and Control). 2015; 13(1): 193-201.
[3] Yang X S. Cuckoo Search and Firefly Algorithm: Theory and Applications [J]. Engineering
Optimization. 2014.
[4] Yang, Xin‐She. Firefly Algorithm [M]// Engineering Optimization. 2010; 221-230.
[5] Massan S U R, Wagan A I, Shaikh M M, et al. Wind turbine micrositing by using the firefly algorithm
[J]. Applied Soft Computing. 2014; 27(2):450-456.
[6] Li M, Ma J, Zhang Y, et al. Firefly Algorithm Solving Multiple Traveling Salesman Problem [J]. Journal
of Computational & Theoretical Nanoscience. 2015; 12(7).
TELKOMNIKA ISSN: 1693-6930 
Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li)
431
[7] Lei M, Shoulin Y, Xinyuan H. A New Method Used for Traveling salesman problem Based on
Discrete Artificial Bee Colony Algorithm. TELKOMNIKA (Telecommunication, Computing, Electronics
and Control). 2016; 14(1): 342-348.
[8] Zhang Y F, Li Y G. An Improve Firefly Algorithm and its Application in Nonlinear Equation Groups [J].
Advanced Materials Research. 2014; 1049(5):1670-1674.
[9] Iwata S, Newman A, Ravi R. Graph-TSP from Steiner Cycles [M]// Graph-Theoretic Concepts in
Computer Science. Springer International Publishing. 2014; 312-323.
[10] Yu L, Li M, Yang Y, et al. An Improved Ant Colony Optimization for Vehicle Routing Problem [C]//
Logistics@sThe Emerging Frontiers of Transportation and Development in China. ASCE, 2015:3360-
3366.

More Related Content

What's hot

Hybrid Power Plant Concept Design
Hybrid Power Plant Concept DesignHybrid Power Plant Concept Design
Hybrid Power Plant Concept Designchowdhr
 
A Hybrid Bat Algorithm
A Hybrid Bat AlgorithmA Hybrid Bat Algorithm
A Hybrid Bat AlgorithmXin-She Yang
 
Bat Algorithm: A Novel Approach for Global Engineering Optimization
Bat Algorithm: A Novel Approach for Global Engineering OptimizationBat Algorithm: A Novel Approach for Global Engineering Optimization
Bat Algorithm: A Novel Approach for Global Engineering OptimizationXin-She Yang
 
Bat Algorithm is Better Than Intermittent Search Strategy
Bat Algorithm is Better Than Intermittent Search StrategyBat Algorithm is Better Than Intermittent Search Strategy
Bat Algorithm is Better Than Intermittent Search StrategyXin-She Yang
 
Detection of unknown signal
Detection of unknown signalDetection of unknown signal
Detection of unknown signalsumitf1
 
Ant Colony Optimization: The Algorithm and Its Applications
Ant Colony Optimization: The Algorithm and Its ApplicationsAnt Colony Optimization: The Algorithm and Its Applications
Ant Colony Optimization: The Algorithm and Its Applicationsadil raja
 
Performance of Spiked Population Models for Spectrum Sensing
Performance of Spiked Population Models for Spectrum SensingPerformance of Spiked Population Models for Spectrum Sensing
Performance of Spiked Population Models for Spectrum SensingPolytechnique Montreal
 
Intro tosignalprocessing
 Intro tosignalprocessing Intro tosignalprocessing
Intro tosignalprocessingJuanJTovarP
 
Fuzzy Sets Introduction With Example
Fuzzy Sets Introduction With ExampleFuzzy Sets Introduction With Example
Fuzzy Sets Introduction With Exampleraisnasir
 

What's hot (20)

Lab Report pub
Lab Report pubLab Report pub
Lab Report pub
 
Hybrid Power Plant Concept Design
Hybrid Power Plant Concept DesignHybrid Power Plant Concept Design
Hybrid Power Plant Concept Design
 
A Hybrid Bat Algorithm
A Hybrid Bat AlgorithmA Hybrid Bat Algorithm
A Hybrid Bat Algorithm
 
Bat Algorithm: A Novel Approach for Global Engineering Optimization
Bat Algorithm: A Novel Approach for Global Engineering OptimizationBat Algorithm: A Novel Approach for Global Engineering Optimization
Bat Algorithm: A Novel Approach for Global Engineering Optimization
 
Firefly algorithm
Firefly algorithmFirefly algorithm
Firefly algorithm
 
BAT Algorithm
BAT AlgorithmBAT Algorithm
BAT Algorithm
 
1004.4170v1
1004.4170v11004.4170v1
1004.4170v1
 
Bat Algorithm
Bat AlgorithmBat Algorithm
Bat Algorithm
 
Fuzzy logic
Fuzzy logicFuzzy logic
Fuzzy logic
 
Bat Algorithm is Better Than Intermittent Search Strategy
Bat Algorithm is Better Than Intermittent Search StrategyBat Algorithm is Better Than Intermittent Search Strategy
Bat Algorithm is Better Than Intermittent Search Strategy
 
Bat Algorithm_Basics
Bat Algorithm_BasicsBat Algorithm_Basics
Bat Algorithm_Basics
 
Detection of unknown signal
Detection of unknown signalDetection of unknown signal
Detection of unknown signal
 
73.1 s
73.1 s73.1 s
73.1 s
 
Ant Colony Optimization: The Algorithm and Its Applications
Ant Colony Optimization: The Algorithm and Its ApplicationsAnt Colony Optimization: The Algorithm and Its Applications
Ant Colony Optimization: The Algorithm and Its Applications
 
Use Of DFT In Power Spectral Estimation
Use Of DFT In Power Spectral EstimationUse Of DFT In Power Spectral Estimation
Use Of DFT In Power Spectral Estimation
 
Performance of Spiked Population Models for Spectrum Sensing
Performance of Spiked Population Models for Spectrum SensingPerformance of Spiked Population Models for Spectrum Sensing
Performance of Spiked Population Models for Spectrum Sensing
 
Practical Swarm Optimization (PSO)
Practical Swarm Optimization (PSO)Practical Swarm Optimization (PSO)
Practical Swarm Optimization (PSO)
 
Intro tosignalprocessing
 Intro tosignalprocessing Intro tosignalprocessing
Intro tosignalprocessing
 
Fuzzy Sets Introduction With Example
Fuzzy Sets Introduction With ExampleFuzzy Sets Introduction With Example
Fuzzy Sets Introduction With Example
 
MARM_chiral
MARM_chiralMARM_chiral
MARM_chiral
 

Similar to Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling Salesman Problem

Firefly Algorithm, Stochastic Test Functions and Design Optimisation
 Firefly Algorithm, Stochastic Test Functions and Design Optimisation Firefly Algorithm, Stochastic Test Functions and Design Optimisation
Firefly Algorithm, Stochastic Test Functions and Design OptimisationXin-She Yang
 
Firefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsFirefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsXin-She Yang
 
Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...
Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...
Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...TELKOMNIKA JOURNAL
 
Solving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithmSolving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithmishmecse13
 
The Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualThe Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualTELKOMNIKA JOURNAL
 
MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...
MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...
MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...Nooria Sukmaningtyas
 
Firefly Algorithm for Unconstrained Optimization
Firefly Algorithm for Unconstrained OptimizationFirefly Algorithm for Unconstrained Optimization
Firefly Algorithm for Unconstrained OptimizationIOSR Journals
 
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...irjes
 
Firefly Algorithm, Levy Flights and Global Optimization
Firefly Algorithm, Levy Flights and Global OptimizationFirefly Algorithm, Levy Flights and Global Optimization
Firefly Algorithm, Levy Flights and Global OptimizationXin-She Yang
 
Sparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency EstimatorSparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency EstimatorJason Fernandes
 
AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...
AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...
AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...ijaia
 
Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...
Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...
Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...Heather Strinden
 
Behavior study of entropy in a digital image through an iterative algorithm
Behavior study of entropy in a digital image through an iterative algorithmBehavior study of entropy in a digital image through an iterative algorithm
Behavior study of entropy in a digital image through an iterative algorithmijscmcj
 
A Study of Firefly Algorithm and its Application in Non-Linear Dynamic Systems
A Study of Firefly Algorithm and its Application in Non-Linear Dynamic SystemsA Study of Firefly Algorithm and its Application in Non-Linear Dynamic Systems
A Study of Firefly Algorithm and its Application in Non-Linear Dynamic Systemsijtsrd
 
Senior Honors Research Thesis
Senior Honors Research ThesisSenior Honors Research Thesis
Senior Honors Research ThesisMichael McMearty
 

Similar to Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling Salesman Problem (20)

Firefly Algorithm, Stochastic Test Functions and Design Optimisation
 Firefly Algorithm, Stochastic Test Functions and Design Optimisation Firefly Algorithm, Stochastic Test Functions and Design Optimisation
Firefly Algorithm, Stochastic Test Functions and Design Optimisation
 
Firefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsFirefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and Applications
 
1308.3898 1
1308.3898 11308.3898 1
1308.3898 1
 
1308.3898
1308.38981308.3898
1308.3898
 
Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...
Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...
Research on Chaotic Firefly Algorithm and the Application in Optimal Reactive...
 
Solving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithmSolving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithm
 
The Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualThe Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent Individual
 
MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...
MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...
MPPT for Photovoltaic System Using Multi-objective Improved Particle Swarm Op...
 
Firefly Algorithm for Unconstrained Optimization
Firefly Algorithm for Unconstrained OptimizationFirefly Algorithm for Unconstrained Optimization
Firefly Algorithm for Unconstrained Optimization
 
M01117578
M01117578M01117578
M01117578
 
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
 
Firefly Algorithm, Levy Flights and Global Optimization
Firefly Algorithm, Levy Flights and Global OptimizationFirefly Algorithm, Levy Flights and Global Optimization
Firefly Algorithm, Levy Flights and Global Optimization
 
Sparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency EstimatorSparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
 
AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...
AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...
AN IMPROVED MULTIMODAL PSO METHOD BASED ON ELECTROSTATIC INTERACTION USING NN...
 
E04923142
E04923142E04923142
E04923142
 
Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...
Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...
Analysis Of High Resolution FTIR Spectra From Synchrotron Sources Using Evolu...
 
Behavior study of entropy in a digital image through an iterative algorithm
Behavior study of entropy in a digital image through an iterative algorithmBehavior study of entropy in a digital image through an iterative algorithm
Behavior study of entropy in a digital image through an iterative algorithm
 
What Is Fourier Transform
What Is Fourier TransformWhat Is Fourier Transform
What Is Fourier Transform
 
A Study of Firefly Algorithm and its Application in Non-Linear Dynamic Systems
A Study of Firefly Algorithm and its Application in Non-Linear Dynamic SystemsA Study of Firefly Algorithm and its Application in Non-Linear Dynamic Systems
A Study of Firefly Algorithm and its Application in Non-Linear Dynamic Systems
 
Senior Honors Research Thesis
Senior Honors Research ThesisSenior Honors Research Thesis
Senior Honors Research Thesis
 

More from TELKOMNIKA JOURNAL

Amazon products reviews classification based on machine learning, deep learni...
Amazon products reviews classification based on machine learning, deep learni...Amazon products reviews classification based on machine learning, deep learni...
Amazon products reviews classification based on machine learning, deep learni...TELKOMNIKA JOURNAL
 
Design, simulation, and analysis of microstrip patch antenna for wireless app...
Design, simulation, and analysis of microstrip patch antenna for wireless app...Design, simulation, and analysis of microstrip patch antenna for wireless app...
Design, simulation, and analysis of microstrip patch antenna for wireless app...TELKOMNIKA JOURNAL
 
Design and simulation an optimal enhanced PI controller for congestion avoida...
Design and simulation an optimal enhanced PI controller for congestion avoida...Design and simulation an optimal enhanced PI controller for congestion avoida...
Design and simulation an optimal enhanced PI controller for congestion avoida...TELKOMNIKA JOURNAL
 
Improving the detection of intrusion in vehicular ad-hoc networks with modifi...
Improving the detection of intrusion in vehicular ad-hoc networks with modifi...Improving the detection of intrusion in vehicular ad-hoc networks with modifi...
Improving the detection of intrusion in vehicular ad-hoc networks with modifi...TELKOMNIKA JOURNAL
 
Conceptual model of internet banking adoption with perceived risk and trust f...
Conceptual model of internet banking adoption with perceived risk and trust f...Conceptual model of internet banking adoption with perceived risk and trust f...
Conceptual model of internet banking adoption with perceived risk and trust f...TELKOMNIKA JOURNAL
 
Efficient combined fuzzy logic and LMS algorithm for smart antenna
Efficient combined fuzzy logic and LMS algorithm for smart antennaEfficient combined fuzzy logic and LMS algorithm for smart antenna
Efficient combined fuzzy logic and LMS algorithm for smart antennaTELKOMNIKA JOURNAL
 
Design and implementation of a LoRa-based system for warning of forest fire
Design and implementation of a LoRa-based system for warning of forest fireDesign and implementation of a LoRa-based system for warning of forest fire
Design and implementation of a LoRa-based system for warning of forest fireTELKOMNIKA JOURNAL
 
Wavelet-based sensing technique in cognitive radio network
Wavelet-based sensing technique in cognitive radio networkWavelet-based sensing technique in cognitive radio network
Wavelet-based sensing technique in cognitive radio networkTELKOMNIKA JOURNAL
 
A novel compact dual-band bandstop filter with enhanced rejection bands
A novel compact dual-band bandstop filter with enhanced rejection bandsA novel compact dual-band bandstop filter with enhanced rejection bands
A novel compact dual-band bandstop filter with enhanced rejection bandsTELKOMNIKA JOURNAL
 
Deep learning approach to DDoS attack with imbalanced data at the application...
Deep learning approach to DDoS attack with imbalanced data at the application...Deep learning approach to DDoS attack with imbalanced data at the application...
Deep learning approach to DDoS attack with imbalanced data at the application...TELKOMNIKA JOURNAL
 
Brief note on match and miss-match uncertainties
Brief note on match and miss-match uncertaintiesBrief note on match and miss-match uncertainties
Brief note on match and miss-match uncertaintiesTELKOMNIKA JOURNAL
 
Implementation of FinFET technology based low power 4×4 Wallace tree multipli...
Implementation of FinFET technology based low power 4×4 Wallace tree multipli...Implementation of FinFET technology based low power 4×4 Wallace tree multipli...
Implementation of FinFET technology based low power 4×4 Wallace tree multipli...TELKOMNIKA JOURNAL
 
Evaluation of the weighted-overlap add model with massive MIMO in a 5G system
Evaluation of the weighted-overlap add model with massive MIMO in a 5G systemEvaluation of the weighted-overlap add model with massive MIMO in a 5G system
Evaluation of the weighted-overlap add model with massive MIMO in a 5G systemTELKOMNIKA JOURNAL
 
Reflector antenna design in different frequencies using frequency selective s...
Reflector antenna design in different frequencies using frequency selective s...Reflector antenna design in different frequencies using frequency selective s...
Reflector antenna design in different frequencies using frequency selective s...TELKOMNIKA JOURNAL
 
Reagentless iron detection in water based on unclad fiber optical sensor
Reagentless iron detection in water based on unclad fiber optical sensorReagentless iron detection in water based on unclad fiber optical sensor
Reagentless iron detection in water based on unclad fiber optical sensorTELKOMNIKA JOURNAL
 
Impact of CuS counter electrode calcination temperature on quantum dot sensit...
Impact of CuS counter electrode calcination temperature on quantum dot sensit...Impact of CuS counter electrode calcination temperature on quantum dot sensit...
Impact of CuS counter electrode calcination temperature on quantum dot sensit...TELKOMNIKA JOURNAL
 
A progressive learning for structural tolerance online sequential extreme lea...
A progressive learning for structural tolerance online sequential extreme lea...A progressive learning for structural tolerance online sequential extreme lea...
A progressive learning for structural tolerance online sequential extreme lea...TELKOMNIKA JOURNAL
 
Electroencephalography-based brain-computer interface using neural networks
Electroencephalography-based brain-computer interface using neural networksElectroencephalography-based brain-computer interface using neural networks
Electroencephalography-based brain-computer interface using neural networksTELKOMNIKA JOURNAL
 
Adaptive segmentation algorithm based on level set model in medical imaging
Adaptive segmentation algorithm based on level set model in medical imagingAdaptive segmentation algorithm based on level set model in medical imaging
Adaptive segmentation algorithm based on level set model in medical imagingTELKOMNIKA JOURNAL
 
Automatic channel selection using shuffled frog leaping algorithm for EEG bas...
Automatic channel selection using shuffled frog leaping algorithm for EEG bas...Automatic channel selection using shuffled frog leaping algorithm for EEG bas...
Automatic channel selection using shuffled frog leaping algorithm for EEG bas...TELKOMNIKA JOURNAL
 

More from TELKOMNIKA JOURNAL (20)

Amazon products reviews classification based on machine learning, deep learni...
Amazon products reviews classification based on machine learning, deep learni...Amazon products reviews classification based on machine learning, deep learni...
Amazon products reviews classification based on machine learning, deep learni...
 
Design, simulation, and analysis of microstrip patch antenna for wireless app...
Design, simulation, and analysis of microstrip patch antenna for wireless app...Design, simulation, and analysis of microstrip patch antenna for wireless app...
Design, simulation, and analysis of microstrip patch antenna for wireless app...
 
Design and simulation an optimal enhanced PI controller for congestion avoida...
Design and simulation an optimal enhanced PI controller for congestion avoida...Design and simulation an optimal enhanced PI controller for congestion avoida...
Design and simulation an optimal enhanced PI controller for congestion avoida...
 
Improving the detection of intrusion in vehicular ad-hoc networks with modifi...
Improving the detection of intrusion in vehicular ad-hoc networks with modifi...Improving the detection of intrusion in vehicular ad-hoc networks with modifi...
Improving the detection of intrusion in vehicular ad-hoc networks with modifi...
 
Conceptual model of internet banking adoption with perceived risk and trust f...
Conceptual model of internet banking adoption with perceived risk and trust f...Conceptual model of internet banking adoption with perceived risk and trust f...
Conceptual model of internet banking adoption with perceived risk and trust f...
 
Efficient combined fuzzy logic and LMS algorithm for smart antenna
Efficient combined fuzzy logic and LMS algorithm for smart antennaEfficient combined fuzzy logic and LMS algorithm for smart antenna
Efficient combined fuzzy logic and LMS algorithm for smart antenna
 
Design and implementation of a LoRa-based system for warning of forest fire
Design and implementation of a LoRa-based system for warning of forest fireDesign and implementation of a LoRa-based system for warning of forest fire
Design and implementation of a LoRa-based system for warning of forest fire
 
Wavelet-based sensing technique in cognitive radio network
Wavelet-based sensing technique in cognitive radio networkWavelet-based sensing technique in cognitive radio network
Wavelet-based sensing technique in cognitive radio network
 
A novel compact dual-band bandstop filter with enhanced rejection bands
A novel compact dual-band bandstop filter with enhanced rejection bandsA novel compact dual-band bandstop filter with enhanced rejection bands
A novel compact dual-band bandstop filter with enhanced rejection bands
 
Deep learning approach to DDoS attack with imbalanced data at the application...
Deep learning approach to DDoS attack with imbalanced data at the application...Deep learning approach to DDoS attack with imbalanced data at the application...
Deep learning approach to DDoS attack with imbalanced data at the application...
 
Brief note on match and miss-match uncertainties
Brief note on match and miss-match uncertaintiesBrief note on match and miss-match uncertainties
Brief note on match and miss-match uncertainties
 
Implementation of FinFET technology based low power 4×4 Wallace tree multipli...
Implementation of FinFET technology based low power 4×4 Wallace tree multipli...Implementation of FinFET technology based low power 4×4 Wallace tree multipli...
Implementation of FinFET technology based low power 4×4 Wallace tree multipli...
 
Evaluation of the weighted-overlap add model with massive MIMO in a 5G system
Evaluation of the weighted-overlap add model with massive MIMO in a 5G systemEvaluation of the weighted-overlap add model with massive MIMO in a 5G system
Evaluation of the weighted-overlap add model with massive MIMO in a 5G system
 
Reflector antenna design in different frequencies using frequency selective s...
Reflector antenna design in different frequencies using frequency selective s...Reflector antenna design in different frequencies using frequency selective s...
Reflector antenna design in different frequencies using frequency selective s...
 
Reagentless iron detection in water based on unclad fiber optical sensor
Reagentless iron detection in water based on unclad fiber optical sensorReagentless iron detection in water based on unclad fiber optical sensor
Reagentless iron detection in water based on unclad fiber optical sensor
 
Impact of CuS counter electrode calcination temperature on quantum dot sensit...
Impact of CuS counter electrode calcination temperature on quantum dot sensit...Impact of CuS counter electrode calcination temperature on quantum dot sensit...
Impact of CuS counter electrode calcination temperature on quantum dot sensit...
 
A progressive learning for structural tolerance online sequential extreme lea...
A progressive learning for structural tolerance online sequential extreme lea...A progressive learning for structural tolerance online sequential extreme lea...
A progressive learning for structural tolerance online sequential extreme lea...
 
Electroencephalography-based brain-computer interface using neural networks
Electroencephalography-based brain-computer interface using neural networksElectroencephalography-based brain-computer interface using neural networks
Electroencephalography-based brain-computer interface using neural networks
 
Adaptive segmentation algorithm based on level set model in medical imaging
Adaptive segmentation algorithm based on level set model in medical imagingAdaptive segmentation algorithm based on level set model in medical imaging
Adaptive segmentation algorithm based on level set model in medical imaging
 
Automatic channel selection using shuffled frog leaping algorithm for EEG bas...
Automatic channel selection using shuffled frog leaping algorithm for EEG bas...Automatic channel selection using shuffled frog leaping algorithm for EEG bas...
Automatic channel selection using shuffled frog leaping algorithm for EEG bas...
 

Recently uploaded

Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGSIVASHANKAR N
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 

Recently uploaded (20)

Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 

Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling Salesman Problem

  • 1. TELKOMNIKA, Vol 16, No 1: February 2018, pp. 424~431 ISSN: 1693-6930, accredited A by DIKTI, Decree No: 58/DIKTI/Kep/2013 DOI: 10.12928/TELKOMNIKA.v16i1.4752  424 Received November 20, 2016; Revised January 12, 2018; Accepted January 21, 2018 Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling Salesman Problem Lin Teng, Hang Li* Software College, Shenyang Normal University, Shenyang, P.C 110034–China *Corresponding author, e-mail: lihangsoft@163.com Abstract The Firefly Algorithm (FA) has a few disadvantages in solving the constrained global optimization problem, including that it is difficult to produce initial population, the size of relative attractiveness has nothing to do with the absolute brightness of fireflies, the inertia weight does not take full advantage of the information of objective function, and it cannot better control and constrain the mobile distance of firefly. In this paper, we propose a novel method based on discrete firefly algorithm combining genetic algorithm for traveling salesman problem. We redefine the distance of firefly algorithm by introducing swap operator and swap sequence to avoid algorithm easily falling into local solution and accelerate convergence speed. In addition, we adopt dynamic mechanism based on neighborhood search algorithm. Finally, the comparison experiment results show that the novel algorithm can search perfect solution within a short time, and greatly improve the effectiveness of solving the traveling salesman problem, it also significantly improves computing speed and reduces iteration number. Keywords: firefly algorithm, traveling salesman problem, genetic algorithm, neighborhood search algorithm Copyright © 2018 Universitas Ahmad Dahlan. All rights reserved. 1. Introduction Traveling salesman problem (it is abbreviated in TSP) [1] is an important combinational optimization problem in the area of mathematics. It belongs to Non-Deterministic Polynomial (NP) problem. Although there are some precise algorithms which can be used to solve the problem, the principle of precise algorithms is complex, and it can produce “combination explosion problem” along with the increase number of city, therefore, the domestic and foreign scholars have been trying to seek a highly efficient and stable algorithm for solving this complex problem. For small size TSP [2], Branch and bound method, greedy method and cutting plane method are often used to solve these problems. But for big size TSP, it is difficult to use above methods. Therefore, the domestic and foreign scholars have been trying to seek a highly efficient and stable algorithm for solving this complex problem. Firefly algorithm (FA) [3] is one of heuristic search algorithms based on swarm intelligence, which was proposed by YANG [4] in 2010. FA [5] is based on the self-organization of the swarm simulation model with the advantages of less setting parameters, strong robustness, and has been applied in many fields. Li et al. [6] showed that firefly algorithm was introduced to solve this problem, and a series of discrete operations were conducted to adapt to it. Yin et al. [7] proposed discrete artificial bee colony algorithm for TSP. Zhang [8] presented a novel firefly algorithm for solving the nonlinear equations problem. The above methods almost are used for solving continuous domain optimization problems. However, FA is relatively few used in the aspect of discrete domain application. To improve the performance of TSP solution, we propose improved discrete FA through redefining distance of firefly algorithm by introducing swap operator and swap sequence which better coordinates and balances the search process of FA algorithm. To facilitate the description, this paper also gives some definitions. We present a new discrete FA with genetic algorithm (GA) for traveling salesman problem. This new scheme takes neighborhood search algorithm into consideration. Finally, we conduct some experiments to verify its performance. The results show that the new algorithm has a good effect on solving TSP.
  • 2. TELKOMNIKA ISSN: 1693-6930  Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li) 425 2. The Firefly Algorithm Fireflies emit fluorescence signal in the nature. From the point of biology view, its role is to attract the opposite sex and get copulation, reproduction chance, sometimes for predation. Firefly uses fluorescence signal within a certain range to attract companion in FA, eventually it makes most fireflies gather in one or more locations, and realize the position optimization. Fireflies attract companies mainly depending on fluorescence intensity and attraction degree. Fluorescence intensity depends on the target value of its own location. The better target value is, the high fluorescence intensity is. Attraction degree has closely relationship with fluorescence intensity. Brighter fireflies have higher attraction intensity, which can attract weaker fireflies moving towards to it. In addition, it should take physical properties into consideration in FA. Fluorescence intensity and attraction degree are in inverse proportion of the distance among fireflies. Namely, fluorescence intensity and attraction degree will decrease with the increase of distance. Fireflies mainly obey the following rules: a. firefly moving direction is determined by the fluorescence intensity, it always move towards to the brighter fireflies. b. the firefly moving distance is determined by the attraction degree. This paper defines firefly fluorescence intensity and attraction degree as follows. Definition 1. I : Fluorescent brightness of fireflies. ijr eII   0 (1) Where ijr is the distance between firefly i and j .  is light intensity absorption coefficient, it denotes that fluorescence gradually decreases with the increase of distance, it can be set as a constant. 0I is fluorescent brightness of firefly when 0r . 0I not only is its own fluorescence intensity, but is the maximum fluorescence intensity, which has relationship with function value. Definition 2. ij : Attraction degree of fireflies. 2 0 ijr ij e     (2) Where 0 (maximum attraction degree) is attraction degree of firefly when 0r . According to definition 1, every firefly uses roulette method to move towards to the individual with higher fluorescence intensity. On the basis of definition 2, each firefly can determine the movement distance. By constantly updating its location, it achieves the purpose of optimization. Definition 3. Location updating formula of firefly i attracted by firefly j . )5.0()(  randxxxx ijii  (3) This formula is composed of three parts. First part, ix denotes current position of firefly i . Second part, •xx ij )(  denotes the distance firefly i moving to j . Third part, there is disturbance mechanism when location updating to avoid fireflies prematurely falling into local optimal solution. ]1,0[ is step length factor. ]1,0[rand is random factor and obeys uniform distribution. 3. The Modified Firefly Algorithm for TSP We first use genetic algorithm to initialize population generation. Assuming that initial group size is m , and it randomly generates m individuals. The i-th is t iX . For each individual,
  • 3.  ISSN: 1693-6930 TELKOMNIKA Vol 16, No 1: February 2018 : 424 – 431 426 it determines the index set tS and tT . }1,0)(|{ ljXgjT t iit  and }1,0)(|{ ljXgjS t iit  , where tT and tS satisfy the constraint condition. When we solve TSP by FA, we should know distance and light intensity absorption coefficient. Then it updates location through formula (1,2,3) to realize optimizing. We apply serial number coding method into FA to solve TSP in this paper. Because TSP is a combinatorial optimization problem, we should first definite discrete variable distance, then we present discrete variable location updating formula and its disturbance mechanism. Finally, we give the solution step based on discrete firefly algorithm for solving TSP. In this section, we introduce the following new definitions. Definition 4. Assuming that solution sequence of n nodes TSP is )( iaS  , swap operator ),( 210 iiS is the point 1ia and 2ia in swap solution S . So ),( 210 iiSSS  is the new solution after operation with swap operator. Example 1. There is a five nodes TSP, its solution is )45312(S . Swap operator is )3,2(0S . So )45132()3,2()45312(),( 0210  SiiSSS . Definition 5. Ordered queue of one or multiple swap operators is called a swap sequence. ),,,( 21 nOOO SSSS  , nOOO SSS ,,, 21  is swap operator. Definition 6. Different swap sequences act on the sane solution that may generate the common new solution. Therefore, all the same effect swap sequences set is called equivalent set of swap sequence. Definition 7. In the equivalent set of swap sequence, the swap sequence with minimum swap operators is the basic swap sequence in equivalent set. Space distance between fireflies can be calculated by Euclidean distance when solving optimization problems of continuous variables. However, when solving TSP, solution is discrete variable, so it cannot use Euclidean distance. In this paper, we definite space distance: NAr / (4) Where A is swap operator number of two fireflies in solution vector basic swap sequence. N is the cities number. After getting r , fluorescent brightness of firefly can be calculated by formula (1). Therefore, each firefly can move towards to other individuals with higher fluorescent brightness based on roulette wheel method. Firefly movement distance can be calculated according to attraction degree when solving optimization problems of continuous variables. However, when solving TSP, movement is discrete variable, so we definite the distance between firefly i and j : ),0int( ijij Arand (5) Where ),0int( ijArand is random integer. ijA is swap operator number of two fireflies i and j in solution vector basic swap sequence. ij is random swap operator number from 0 to ijA . Location updating by formula (6): ijii xx  (6) When solving the TSP, in order to avoid the firefly algorithm falling into local optimum, this paper defines the disturbance mechanism of discrete variables based on variable neighborhood search algorithm. It adopts several neighborhood structure forms to search optimization solution, systematacially changes its neighborhood so as to expand the search scope, enhance the ability to jump out of local optimal. In this paper, we adopt three neighborhood structures to solve TSP.
  • 4. TELKOMNIKA ISSN: 1693-6930  Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li) 427 a. Insert neighborhood. We randomly select different position x and y in solution sequence, and insert the city in x into y , as ),( yxInsert . b. Swap neighborhood. We randomly select different position x and y in solution sequence, and exchange the cities in x and y , as ),( yxSwap . c. 2-opt neighborhood. We use side ),( ji and )1,1(  ji to replace )1,( ii and )1,( jj . This change will affect the direction of mid-edge ),1( ji  . The detailed process of the proposed discrete firefly algorithm is as follows: Step 1. Initializing the swarm. Set parameter firefly number m , light intensity absorption coefficient  , maximum iteration number maxT . Step 2. Randomly initializing solution sequence of each firefly. Calculating objective function iP and maximum fluorescent brightness 0I . ig PPI /0  (7) Where gP is the current searched optimal solution. Step 3. According to formula (1), (4), (5), (7), calculating relative brightness I of firefly and attraction degree ij . So determine the movement direction and distance. Step 4. According to formula (6), updating position of firefly. Step 5. Choosing the three neighborhood in variable neighborhood search method based on a certain probability. Repeat executing n iteration. Selecting position with optimal objective function as the current position of firefly. Step 6. According to updated position of firefly, re-compute objective function iP and make a comparison with current optimal position gP . If function is better, then update gP . Step 7. Whether the process satisfies termination conditions or not. If YES, then finish and output results. If NO, return back step3. 4. Experiments and Results 4.1. The effect of Light Intensity Absorption Coefficient  on New Firefly Algorithm The light intensity absorption coefficient  is the main parameter in new firefly algorithm with GA (abbreviate in FGA). We make simulation experiments to analyze the effect of  on performances of algorithm solution under the MATLAB platform. We adopt different  to conduct experiments under the other same parameters conditions. Setting maximum iterations 500max T , number of firefly is 50m , the three neighborhood in variable neighborhood search method are same: 3/1 , algorithm runs 30 times independently. Table1 records the results with different  . Table 1. Different  with Different Influences on FGA r Best value ×103 Worst value ×103 Average value ×103 Standard deviation ×102 0.01 7.51443 8.48821 8.01094 2.34474 0.03 7.52443 8.48449 8.00774 2.07446 0.05 7.52466 8.58599 8.10785 2.48271 0.07 7.63768 8.68004 8.07167 2.38243 0.09 7.53436 8.59042 8.10332 2.17915 0.11 7.52436 8.69427 8.22529 3.19748 0.13 7.73988 8.78536 8.17088 2.49888 0.15 7.75758 8.86203 8.35733 2.68301
  • 5.  ISSN: 1693-6930 TELKOMNIKA Vol 16, No 1: February 2018 : 424 – 431 428 From Table 1 we can know that when  gradually increases, the solution performance is little-changed. When  =0.01, 0.02, 0.03, 0.04, 0.06, 0.09 and 0.11, FGA gets the best solution, 7.53436×10 3 . And  =0.03, average value is 8.00774×10 3 and standard value 2.07446×10 2 which is the minimum value. But as a whole, when  =0.03, FA has a better solving performance, which is the best value for FGA. The effect of different  on FA is not obvious. So this is one of advantages for FGA. 4.2. The Comparison Experiment In order to further verify the feasibility and effectiveness of this paper’s method, we choose multiple instances in international universal test library for testing, and use testing results to make a comparison to spanning tree algorithm (STA) [9], Improved Ant Colony Optimization [10](IACO). In the experiment, digit indicates number of cities. “O” shows calculation result of the index is not given in the comparison literature. Experimental environment is the same as above. Parameters set as follows: maximum number of iterations 2000max T , 03.0 , 2:1:2:: 321 kkk , number of firefly 20m when city number is less than 48, otherwise 50m . The two algorithms run 20 times. Calculation results are as shown in Table 2. Table 2. Calculation Results Instance Calculation index IABC STA FA Bays29 Best value 30.8788 30.8788 30.8788 Average value 30.8788 30.8788 30.8788 Iteration number 2000 200 200 Running time 5.11 O O Oliver30 Best value 73.987 73.9875 73.9875 Average value 74.0079 74.0077 74.0075 Iteration number 2000 200 200 Running time 5.36 O O Dantzig42 Best value 76.1236 76.1149 75.9098 Average value 75.3069 75.3069 75.3069 Iteration number 2000 200 200 Running time 8.95 O O Eil51 Best value 431.25 428.88 426.01 Average value 444.19 431.01 427.50 Iteration number 2000 200 200 Running time 10.36 O O Berlin52 Best value 7680.77 7554.38 7542.13 Average value 7941.26 7562.81 7573.49 Iteration number 2000 200 200 Running time 10.76 O O From Table 2, STA algorithm gets the known optimal solutions in Berlin52, Oliver30 and Eil51, which is close to FGA. But iteration number of FGA has reduced by 98percent. What’s more, steps of FGA are not complicated. The average value has increased by 0.6% (Not exceed 0.6%). Compared with IABC algorithm, the best value and average value is relatively small, and for Bays29, Oliver30 and Dantzig42, the standard deviation is smaller. For the four instances, the running time of FGA has saved by 97.1%, 98.2%, 98.8% and 98.99% respectively. FGA algorithm also can obtain the results closely to known optimal solutions for all instances. For Oliver30 and Bays29, FGA algorithm gets the same results as known optimal solutions. For Dantzig42, calculation result of FA algorithm has decreased by 19.3% compared with IABC algorithm. Figure 1-3 show the experimental simulation diagram of Oliver30, Dantzig42 and Berlin52. The average value of FGA algorithm is relatively small compared with IABC algorithm for Oliver30, Dantzig42 and Bays29. IABC algorithm is mainly based on the STA algorithm and has combined with other operations. When the number of population in IABC is equal to that in STA, the running time in IABC is closely to that of STA at least. Nevertheless, the running time
  • 6. TELKOMNIKA ISSN: 1693-6930  Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li) 429 in IACO is relatively long. Therefor, FGA algorithm has the better solution performance in terms of solution time and solution quality compared with STA and IABC algorithm. (a) Optimal path (b) Best value evolution curve Figure 1. Experimental simulation diagram of Oliver30 (a) Optimal path (b) Best value evolution curve Figure 2. Experimental simulation diagram of Dantzig42
  • 7.  ISSN: 1693-6930 TELKOMNIKA Vol 16, No 1: February 2018 : 424 – 431 430 (a) Optimal path (b) Best value evolution curve Figure 3. Experimental simulation diagram of Berlin52 5. Conclusion This paper proposes a new discrete firefly algorithm for solving TSP problem. It extends continuous artificial swarm (especially FA) optimization algorithm to discrete domain. The new algorithm makes some definitions based on swap operator and swap sequence. It also adopts disturbance strategy based on variable neighborhood search method to increase search areas and improve the local refinement ability of the algorithm and the optimal speed. The experimental results show that the algorithm can find relatively satisfactory solution in a short time and improve the efficiency of solving the TSP. In the future, we would find more effective firefly algorithms to improve optimum searching method and solve other combinatorial optimization problems. References [1] Carrabs F, Cordeau J F, Laporte G. Variable neighborhood search for the pickup and delivery traveling salesman problem with LIFO loading [J]. Informs Journal on Computing. 2015; 19(4): 618- 632 2007. [2] Purbasari A, Suwardi I S, Santoso O S, et al. Data Partition and Communication On Parallel Heuristik Model Based on Clonal Selection Algorithm [J]. TELKOMNIKA (Telecommunication, Computing, Electronics and Control). 2015; 13(1): 193-201. [3] Yang X S. Cuckoo Search and Firefly Algorithm: Theory and Applications [J]. Engineering Optimization. 2014. [4] Yang, Xin‐She. Firefly Algorithm [M]// Engineering Optimization. 2010; 221-230. [5] Massan S U R, Wagan A I, Shaikh M M, et al. Wind turbine micrositing by using the firefly algorithm [J]. Applied Soft Computing. 2014; 27(2):450-456. [6] Li M, Ma J, Zhang Y, et al. Firefly Algorithm Solving Multiple Traveling Salesman Problem [J]. Journal of Computational & Theoretical Nanoscience. 2015; 12(7).
  • 8. TELKOMNIKA ISSN: 1693-6930  Modified Discrete Firefly Algorithm Combining Genetic Algorithm for Traveling… (Hang Li) 431 [7] Lei M, Shoulin Y, Xinyuan H. A New Method Used for Traveling salesman problem Based on Discrete Artificial Bee Colony Algorithm. TELKOMNIKA (Telecommunication, Computing, Electronics and Control). 2016; 14(1): 342-348. [8] Zhang Y F, Li Y G. An Improve Firefly Algorithm and its Application in Nonlinear Equation Groups [J]. Advanced Materials Research. 2014; 1049(5):1670-1674. [9] Iwata S, Newman A, Ravi R. Graph-TSP from Steiner Cycles [M]// Graph-Theoretic Concepts in Computer Science. Springer International Publishing. 2014; 312-323. [10] Yu L, Li M, Yang Y, et al. An Improved Ant Colony Optimization for Vehicle Routing Problem [C]// Logistics@sThe Emerging Frontiers of Transportation and Development in China. ASCE, 2015:3360- 3366.