SlideShare a Scribd company logo
MULTIOBJECTIVE VEHICLE ROUTING WITH ANT COLONY
OPTIMIZATION SUPERVISED BY PARTICLE SWARM
INTELLIGENCE
Aditya Ramkumar , Harikrishnan M , Selvaraj Rajkanna S , Sreejith P
Guided by Dr. Sathish kumar
(Nehru Institute of Technology , Coimbatore , India )
ABSTARCT
Network can be defined as group of nodes
connected together generally for purpose
of communicating with eachother. multi
objective vehicle routing challenges to
satisfy all the required constraints like
distance , capacity and interlinking
conditions. Various routing algorithms are
used todetermine the optimal solution to
this problem.In this project combinatorial
approach using ant colony optimization
(ACO) and particle swarm intelligence (PSI)
is carried out inorder to determine optimal
path for vehicle routing problems (VRP)
ACO is supervised by PSI to reduce the
possiblity of ants revolving in the local
optima.In ACO local search (ACOLS)
afloyd warshall algorithm , which is all pair
ashortest path technique is applied in order
ato check all possible routes.This paper
focuses on finding an optimal routing
strategy based on linear networks.
It is achieved by avoiding greedy algorithm
and focusing on ACO and PSI methods.
KEYWORDS
Vehicle routing problems, Ant colony
optimization , Particle swarm optimization,
Floyd warshall algorithm , ant colony
supervised by particle swarm .
INTRODUCTION
Logistic management is the new and rising
problem for organizations with manufacture
and supply. These problems received
increasing attention from government and
business organizations. Green
manufacturing is one of the top concerns of
every product based organization. One of
the actions taken by such companies towards
this is to optimize the end product supply
using proper routing strategies. The
distribution and collection within the system
depends upon customer needs and
satisfaction provided with concerns about
the nature.
In the case of most of delivery and pickups,
utilization of vehicles will produce a
measurable amount of tangible and
intangible cost. This will impact in both
production and in natural concerns.
Utilization of vehicle increases significantly
when product brought to customer with
returning back to a depot. Hence vehicle
routing are more effective in bi-directional
logistics.
There are many categories in vehicle routing
problems and strategies. Most of these
variants are based on objectives of routing
strategy. Objectives can be time, time
window, capacity of vehicle, traffic
conditions and so on. Capacited vehicle
routing problems and VRPSDPTW are more
challenging combinatorial optimization
problems. Studies on such problems are
scarce since capacity constraints along with
time windows are more complex problems
and difficult to solve. Optimization
strategies on such problems will be
considering a bounded service area and the
techniques will be chosen according to the
areas.
ANT COLONY OPTIMIZATION
In computer science and operations research,
the Ant Colony
Optimization algorithm (ACO) is
a probabilistic technique for solving
computational problems which can be
reduced to finding good paths
through graphs.
This algorithm is a member of the Ant
Colony Algorithms family, in swarm
intelligence methods, and it constitutes
some metaheuristic optimizations. Initially
proposed by Marco Dorigo in 1992 in his
PhD thesis, the first algorithm was aiming to
search for an optimal path in a graph, based
on the behavior of ants seeking a path
between their colony and a source of food.
The original idea has since diversified to
solve a wider class of numerical problems,
and as a result, several problems have
emerged, drawing on various aspects of the
behavior of ants.
PARTICLE SWARM OPTIMIZATION
Particle swarm optimization (PSO) is a
population based stochastic optimization
technique developed by Dr. Eberhart and Dr.
Kennedy in 1995, inspired by social
behavior of bird flocking or fish schooling.
PSO shares many similarities with
evolutionary computation techniques such as
Genetic Algorithms (GA). The system is
initialized with a population of random
solutions and searches for optima by
updating generations. However, unlike GA,
PSO has no evolution operators such as
crossover and mutation. In PSO, the
potential solutions, called particles, fly
through the problem space by following the
current optimum particles. The detailed
information will be given in following
sections.
Compared to GA, the advantages of PSO are
that PSO is easy to implement and there are
few parameters to adjust. PSO has been
successfully applied in many areas: function
optimization, artificial neural network
training, fuzzy system control, and other
areas where GA can be applied.
After finding the two best values, the
particle updates its velocity and positions
with following equation (a) and (b).
v[] = v[] + c1 * rand() * (pbest[] - present[])
+ c2 * rand() * (gbest[] - present[]) (a)
present[] = persent[] + v[] (b)
v[] is the particle velocity, persent[] is the
current particle (solution). pbest[] and
gbest[] are defined as stated before. rand ()
is a random number between (0,1). c1, c2
are learning factors. usually c1 = c2 = 2.
FLOYD WARSHALL ALGORITHM
Floyd–Warshall algorithm is an algorithm
for finding shortest paths in a weighted
graph with positive or negative edge weights
(but with no negative cycles).[1][2]A single
execution of the algorithm will find the
lengths (summed weights) of the shortest
paths between all pairs of vertices, though it
does not return details of the paths
themselves. Versions of the algorithm can
also be used for finding the transitive
closure of a relation, or (in connection with
theSchulze voting system) widest paths
between all pairs of vertices in a weighted
graph.The Floyd–Warshall algorithm
compares all possible paths through the
graph between each pair of vertices. It is
able to do this with Θ(| V|3)comparisons in a
graph. This is remarkable considering that
there may be up to Ω(| V|2)edges in the
graph, and every combination of edges is
tested. It does so by incrementally
improving an estimate on the shortest path
between two vertices, until the estimate is
optimal.
EXISTING SYSTEM
The multi objective algorithm of the existing
model uses a simple shortest path strategy
with simultaneous pickup and delivery
choice. It provides an interconnection of
local searches.Time windowing technique is
applied which sets a maximum time limit
after which the trip will stop.
MULTI OBJECTIVE LOCAL SEARCH
(MOLS)
It uses different local search procedures to
optimize different objectivesThe different
solutions are based on the amount of weight
to be collected from each area.In denser
areas with less traffic large capacity vehicles
are used (MOLS 1).
In denser areas with high traffic vehicles
with largest capacity are took in to practice
(MOLS 2).In scarce areas with less traffic
vehicles with minimum capacity are used
(MOLS 3).In scarce areas with high traffic
medium capacity vehicles are used (MOLS
4).
MULTI OBJECTIVE MEMTIC
ALGORITHM (MOMA)
Its used for solving simultaneous delivery
and pick up problems.It divides the system
in to n sub problems using a weighted sum
approach.It uses a crossover operator to
determine the paths.By using crossover
operator the path for the second vehicle
route is obtained by inheriting routes from
parents. MOMA acts as supervisor to MOLS
algorithm.
PROPOSED SYSTEM
A multi objective routing algorithm that
emphasize on finding the shortest path from
currently located node satisfying some other
objectives such as weight, traffic etc.A
linearly expanded network model could
make the application of such algorithm in
the real world problems .Using a routing
algorithm that will avoid the creation of a
tree formated network. This will avoid
complexities in the real world applications.
A linear network model will reduce the
overhead due to the traversal in side a
minimum spanning tree.Using ant colony
optimization(ACO) and particle swarm
optimization(PSO) for node selection can
reduce the total distance travelled.
ALGOTITHM ACOLS-PSI
while(count<values)
{
for(int a=0;a<values-1;a++)
{
for(int b=0;b<values-1;b++)
{
for(int c=0;c<values-1;c++)
{
if(value.get(b).bond.get(a).distance +
value.get(a).bond.get(c).distance <
value.get(b).bond.get(c).distance)
{
value.get(b).bond.get(c).distance =
value.get(b).bond.get(a).distance +
value.get(a).bond.get(c).distance;
}}}}
for (int i=0; i<values-1; i++)
{
for (int j=i+1; j<values; j++)
{
dist=value.get(i).bond.get(j).distance;
if (dist<d_min)
{
d_min=dist;
pbest=d_min;
};};};
if(gbest>pbest)
gbest=pbest;
count++;
}}
void calc_attractive()
{
for (int i=0;i<values;i++)
{
value.get(i).calc_attractive();
};}
EXPERIMENTAL ANALYSIS
The ACOLS-PSI algorithm when compared
with greedy algorithm (prims algorithm)
produced an improvement of 8% on
average.
Also,another key notable point was that the
efficiency of the algorithm improves when
the system is wide and sparse. In denser
areas the proposed system performs more or
less similar to current system.
Comparison of ACOLS-PSI with existing
system (greedy algorithm local search)
Sample
number
PSO
supervised
ACO
Existing
model
(MOMA
with
greedy
local
search)
Difference
in distance
(existing
model -
PSO with
ACO)
Distance
saved
(Difference
in distance /
existing
model)*100
1 92820 100919 8099 8.02 %
2 143620 158272 14652 9.25 %
3 78950 85907 6957 7.86 %
4 94250 102500 8250 8.04 %
5 99259 107608 8349 7.75 %
6 153040 173116 20076 11.59 %
7 66290 72262 5972 8.26 %
8 56549 58766 2217 3.77 %
9 161440 181998 20558 11.29 %
10 107180 115914 8734 7.53 %
11 97320 105840 8520 8.05 %
12 66020 73636 7616 10.34 %
CONCLUSION AND FUTURE SCOPE
This paper introduces a new approach
towards vehicle routing problems by
using a combination ACO and PSI. ACO is
implemented using floyd warshall
algorithm which determines all pair
shortest paths instead of the commonly
used greedy algorithm techniques.
Another contribution of this paper is
supervising the ACO local search by PSI to
reduce the probability of ant wandering
in the local optima.
To further improve vehicle routing
problems especially on wider and sparse
network, this algorithm can be used as a
benchmark. Furthermore, ACOLS-PSI
algorithm can be combined with various
other all pair shortest path or similar
methods to generate a memetic algorithm
to improve performance of vehicle
routing problems.
REFERENCES
1. Jiahai Wang, Ying Zhou, Yong
Wang, Jun Zhang, C. L. Philip
Chen and Zibin Zheng (2015)
“Multiobjective Vehicle Routing
Problems with Simultaneous
Delivery and Pickup and Time
Windows” IEEE Journal
2. Ying Zhou and Jiahai Wang (2014)
“A Local Search-Based
Multiobjective Optimization
Algorithm for Multiobjective
Vehicle Routing Problem with
Time Windows” IEEE System
journal
3. K. C. Tan, T. H. Lee, Y. H.
Chewand L. H. Lee, Department of
Electrical and Computer
Engineering; National University of
Singapore “A Multiobjective
Evolutionary Algorithm for Solving
Vehicle Routing Problem with
Time Windows” IEEE Journal
4. Haihua Li, Zongyan Xu, Feifei
Zhou, Military Transportation
University
Tianjin,” A Study on Vehicle
Routing Problem with Fuzzy
Demands Based on Improved Tabu
Search” China (2012) Fourth
International Conference on
Computational and Information
Sciences
5.Wang Xu-ping, XU Chuan-lei,Hu
Xiang-pei Institute of Systems
Engineering, Dalian University of
Technology,” Genetic Algorithm
for Vehicle Routing Problem with
Time Windows and a Limited
Number of Vehicles” (2008)
International Conference on
Management Science &
Engineering
6. Imen Boudali, Wajdi Fki and
Khaled Ghedira Department of
Computing Sciences ISG, Tunis
University, Tunisia “How to deal
with the VRPTW by using multi-
agent coalitions” IEEE journal
7. Peng Yong, Wang Xiaofeng ,Key
Laboratory of Traffic &
Transportation
Chongqing Jiaotong University
“Research on a Vehicle Routing
Schedule to Reduce Fuel
Consumption” 2009 International
Conference on Measuring
Technology
8. Li Guiyun College of Economics
and Trade, Hunan University,
China, “Research on Open Vehicle
Routing Problem with Time
Windows Based on Improved
Genetic Algorithm” (2009) IEEE
journal
9. Marco Antonio Cruz-Chavez,
Ocotlan Diaz-Parra, J. A.
Hernandez, Jose Crispin Zavala-
Diaz, Martin G “Search Algorithm
for the Constraint Satisfaction
Problem of VRPTW” (2007)
Fourth Congress of Electronics,
IEEE journal
10. Bhawna Minocha ,Amity School
of Computer Sciences Noida, C.
Mohan Ambala College of
Engineering and Applied Research
Ambala, India, “Solution of
VRPTW using Controlled Random
Search Technique” (2011) IEEE
journal
11.Shih-Pang Tseng, Chun-Wei Tsai,
Ming-Chao Chiang, and Chu-Sing
Yang
National Sun Yat-sen University,
Taiwan “A fast ant colony
optimization for traveling
salesman problem” (2010) IEEE
journal
12.Ying Pei,Wenbo Wang, Song
Zhang ,Ji Lin University ,Chang
Chun, China (2012) International
Conference on Computer Science
and Electronics Engineering
13.Ping Chen, Houkuan Huang and
Xingye Dong, School of Computer
and Information Technology,
Beijing Jiaotong University, “An
Ant Colony System Based
Heuristic Algorithm for the
Vehicle Routing Problem with
Simultaneous
Delivery and Pickup” (2007) IEEE
journal
14.Yi Zhang, Zhi-li Pei, Jin-hui Yang,
Yan-chun Liang ,NSFC China,
“An Improved Ant Colony
Optimization Algorithm Based on
Route Optimization and Its
Applications in Travelling
Salesman Problem” (2007) IEEE
journal
15.Ning Tao,GUO Chen College of
Information Science and Technology
Dalian Maritime University,”
Solving VRP using ant colony
optimization algorithm”(2012)
Fifth International Conference on
Information and Computing
Science
16. Abolfazl Zaraki, Control and
instrumentation Engineering Dept-
CIED
University Technology, Malaysia,
“Implementing Particle Swarm
Optimization to Solve Economic
Load Dispatch Problem” (2009)
International Conference of Soft
Computing and Pattern
Recognition
paper

More Related Content

What's hot

E017512630
E017512630E017512630
E017512630
IOSR Journals
 
Iaetsd modified artificial potential fields algorithm for mobile robot path ...
Iaetsd modified  artificial potential fields algorithm for mobile robot path ...Iaetsd modified  artificial potential fields algorithm for mobile robot path ...
Iaetsd modified artificial potential fields algorithm for mobile robot path ...Iaetsd Iaetsd
 
Knowledge Based Genetic Algorithm for Robot Path Planning
Knowledge Based Genetic Algorithm for Robot Path PlanningKnowledge Based Genetic Algorithm for Robot Path Planning
Knowledge Based Genetic Algorithm for Robot Path Planning
Tarundeep Dhot
 
Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...
Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...
Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...
GreenYourMove
 
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on IntersectionsHelp the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
IJORCS
 
IRJET- Survey on Adaptive Routing Algorithms
IRJET- Survey on Adaptive Routing AlgorithmsIRJET- Survey on Adaptive Routing Algorithms
IRJET- Survey on Adaptive Routing Algorithms
IRJET Journal
 
Real-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition SystemReal-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition System
IJORCS
 
Solving real world delivery problem using improved max-min ant system with lo...
Solving real world delivery problem using improved max-min ant system with lo...Solving real world delivery problem using improved max-min ant system with lo...
Solving real world delivery problem using improved max-min ant system with lo...
ijaia
 
Path Planning for Mobile Robots
Path Planning for Mobile RobotsPath Planning for Mobile Robots
Path Planning for Mobile Robots
sriraj317
 
Quantum ant colony optimization algorithm based onBloch spherical search
Quantum ant colony optimization algorithm based onBloch spherical searchQuantum ant colony optimization algorithm based onBloch spherical search
Quantum ant colony optimization algorithm based onBloch spherical search
IJRES Journal
 
Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...
Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...
Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...
Nooria Sukmaningtyas
 
Comparison of different Ant based techniques for identification of shortest p...
Comparison of different Ant based techniques for identification of shortest p...Comparison of different Ant based techniques for identification of shortest p...
Comparison of different Ant based techniques for identification of shortest p...
IOSR Journals
 
Offine/Online Optimum Routing of a UAV using Auxiliary Points
Offine/Online Optimum Routing of a UAV using Auxiliary Points Offine/Online Optimum Routing of a UAV using Auxiliary Points
Offine/Online Optimum Routing of a UAV using Auxiliary Points
IJECEIAES
 
3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility
LIFE GreenYourMove
 
Sampling based positioning of unmanned aerial vehicles as communication relay...
Sampling based positioning of unmanned aerial vehicles as communication relay...Sampling based positioning of unmanned aerial vehicles as communication relay...
Sampling based positioning of unmanned aerial vehicles as communication relay...
Inkonova AB
 
Improved ant colony optimization for quantum cost reduction
Improved ant colony optimization for quantum cost reductionImproved ant colony optimization for quantum cost reduction
Improved ant colony optimization for quantum cost reduction
journalBEEI
 
Vehicle route scheduling and transportation cost minimization in a latex indu...
Vehicle route scheduling and transportation cost minimization in a latex indu...Vehicle route scheduling and transportation cost minimization in a latex indu...
Vehicle route scheduling and transportation cost minimization in a latex indu...
IJRES Journal
 

What's hot (19)

E017512630
E017512630E017512630
E017512630
 
Iaetsd modified artificial potential fields algorithm for mobile robot path ...
Iaetsd modified  artificial potential fields algorithm for mobile robot path ...Iaetsd modified  artificial potential fields algorithm for mobile robot path ...
Iaetsd modified artificial potential fields algorithm for mobile robot path ...
 
Knowledge Based Genetic Algorithm for Robot Path Planning
Knowledge Based Genetic Algorithm for Robot Path PlanningKnowledge Based Genetic Algorithm for Robot Path Planning
Knowledge Based Genetic Algorithm for Robot Path Planning
 
Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...
Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...
Presentation of GreenYourMove's hybrid approach in the 3rd Conference on Sust...
 
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on IntersectionsHelp the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
 
IRJET- Survey on Adaptive Routing Algorithms
IRJET- Survey on Adaptive Routing AlgorithmsIRJET- Survey on Adaptive Routing Algorithms
IRJET- Survey on Adaptive Routing Algorithms
 
Real-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition SystemReal-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition System
 
Solving real world delivery problem using improved max-min ant system with lo...
Solving real world delivery problem using improved max-min ant system with lo...Solving real world delivery problem using improved max-min ant system with lo...
Solving real world delivery problem using improved max-min ant system with lo...
 
Path Planning for Mobile Robots
Path Planning for Mobile RobotsPath Planning for Mobile Robots
Path Planning for Mobile Robots
 
D0931621
D0931621D0931621
D0931621
 
Quantum ant colony optimization algorithm based onBloch spherical search
Quantum ant colony optimization algorithm based onBloch spherical searchQuantum ant colony optimization algorithm based onBloch spherical search
Quantum ant colony optimization algorithm based onBloch spherical search
 
Internet
InternetInternet
Internet
 
Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...
Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...
Robot Three Dimensional Space Path-planning Applying the Improved Ant Colony ...
 
Comparison of different Ant based techniques for identification of shortest p...
Comparison of different Ant based techniques for identification of shortest p...Comparison of different Ant based techniques for identification of shortest p...
Comparison of different Ant based techniques for identification of shortest p...
 
Offine/Online Optimum Routing of a UAV using Auxiliary Points
Offine/Online Optimum Routing of a UAV using Auxiliary Points Offine/Online Optimum Routing of a UAV using Auxiliary Points
Offine/Online Optimum Routing of a UAV using Auxiliary Points
 
3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility
 
Sampling based positioning of unmanned aerial vehicles as communication relay...
Sampling based positioning of unmanned aerial vehicles as communication relay...Sampling based positioning of unmanned aerial vehicles as communication relay...
Sampling based positioning of unmanned aerial vehicles as communication relay...
 
Improved ant colony optimization for quantum cost reduction
Improved ant colony optimization for quantum cost reductionImproved ant colony optimization for quantum cost reduction
Improved ant colony optimization for quantum cost reduction
 
Vehicle route scheduling and transportation cost minimization in a latex indu...
Vehicle route scheduling and transportation cost minimization in a latex indu...Vehicle route scheduling and transportation cost minimization in a latex indu...
Vehicle route scheduling and transportation cost minimization in a latex indu...
 

Viewers also liked

Almacenamientovirtual
AlmacenamientovirtualAlmacenamientovirtual
AlmacenamientovirtualLuis Uchuari
 
Adriana
AdrianaAdriana
Unidad 6 - La seguridad social
Unidad 6 - La seguridad socialUnidad 6 - La seguridad social
Unidad 6 - La seguridad social
Universidad del golfo de México Norte
 
Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02
Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02
Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02Ray Cavalcante
 
Sobre el proceso de conocer, y su relación con la magia, la religión y filos...
Sobre el proceso de conocer, y su relación con  la magia, la religión y filos...Sobre el proceso de conocer, y su relación con  la magia, la religión y filos...
Sobre el proceso de conocer, y su relación con la magia, la religión y filos...
ROBERT ALEJANDRO GOMEZ AULAR
 
Exp 9 to exp-14
Exp 9 to exp-14Exp 9 to exp-14
Exp 9 to exp-14
1333sample
 
Análisis semiótico de una nota periodística
Análisis semiótico de una nota periodísticaAnálisis semiótico de una nota periodística
Análisis semiótico de una nota periodística
Luis Montemayor
 
Organisational culture of airtel
Organisational culture of airtelOrganisational culture of airtel
Organisational culture of airtel
Vishal Jamwal
 
Presentation1
Presentation1Presentation1
Presentation1s_manish
 
Internship Final Paper
Internship Final PaperInternship Final Paper
Internship Final PaperMichael Demos
 
Unidad 3 - clasificaciónde los ingresos fiscales
Unidad 3 - clasificaciónde los ingresos fiscalesUnidad 3 - clasificaciónde los ingresos fiscales
Unidad 3 - clasificaciónde los ingresos fiscales
Universidad del golfo de México Norte
 
Mary Rani_6+yrs Exp
Mary Rani_6+yrs ExpMary Rani_6+yrs Exp
Mary Rani_6+yrs ExpMary Rani
 
ENCUESTAS GOBIERNO DF POR PARTIDO
ENCUESTAS GOBIERNO DF POR PARTIDOENCUESTAS GOBIERNO DF POR PARTIDO
ENCUESTAS GOBIERNO DF POR PARTIDOblogdechris
 
Alcampo corte pdf
Alcampo corte pdfAlcampo corte pdf
Alcampo corte pdfdav2013
 
Clown-frontation and Reclaiming the Streets
Clown-frontation and Reclaiming the StreetsClown-frontation and Reclaiming the Streets
Clown-frontation and Reclaiming the Streets
ccgreer
 
Juvenil b
Juvenil bJuvenil b
Juvenil bfbcat
 

Viewers also liked (20)

Almacenamientovirtual
AlmacenamientovirtualAlmacenamientovirtual
Almacenamientovirtual
 
Perfeição - Capítulo 4
Perfeição - Capítulo 4 Perfeição - Capítulo 4
Perfeição - Capítulo 4
 
Adriana
AdrianaAdriana
Adriana
 
Stock Brochure
Stock BrochureStock Brochure
Stock Brochure
 
Unidad 6 - La seguridad social
Unidad 6 - La seguridad socialUnidad 6 - La seguridad social
Unidad 6 - La seguridad social
 
Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02
Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02
Folhadepagamentolancamentoscontabeis 23tipos-parte1-100805092430-phpapp02
 
Sobre el proceso de conocer, y su relación con la magia, la religión y filos...
Sobre el proceso de conocer, y su relación con  la magia, la religión y filos...Sobre el proceso de conocer, y su relación con  la magia, la religión y filos...
Sobre el proceso de conocer, y su relación con la magia, la religión y filos...
 
Exp 9 to exp-14
Exp 9 to exp-14Exp 9 to exp-14
Exp 9 to exp-14
 
Análisis semiótico de una nota periodística
Análisis semiótico de una nota periodísticaAnálisis semiótico de una nota periodística
Análisis semiótico de una nota periodística
 
Competicions de la Temporada 2011/2012
Competicions de la Temporada 2011/2012Competicions de la Temporada 2011/2012
Competicions de la Temporada 2011/2012
 
Organisational culture of airtel
Organisational culture of airtelOrganisational culture of airtel
Organisational culture of airtel
 
Cloud Umbrella
Cloud UmbrellaCloud Umbrella
Cloud Umbrella
 
Presentation1
Presentation1Presentation1
Presentation1
 
Internship Final Paper
Internship Final PaperInternship Final Paper
Internship Final Paper
 
Unidad 3 - clasificaciónde los ingresos fiscales
Unidad 3 - clasificaciónde los ingresos fiscalesUnidad 3 - clasificaciónde los ingresos fiscales
Unidad 3 - clasificaciónde los ingresos fiscales
 
Mary Rani_6+yrs Exp
Mary Rani_6+yrs ExpMary Rani_6+yrs Exp
Mary Rani_6+yrs Exp
 
ENCUESTAS GOBIERNO DF POR PARTIDO
ENCUESTAS GOBIERNO DF POR PARTIDOENCUESTAS GOBIERNO DF POR PARTIDO
ENCUESTAS GOBIERNO DF POR PARTIDO
 
Alcampo corte pdf
Alcampo corte pdfAlcampo corte pdf
Alcampo corte pdf
 
Clown-frontation and Reclaiming the Streets
Clown-frontation and Reclaiming the StreetsClown-frontation and Reclaiming the Streets
Clown-frontation and Reclaiming the Streets
 
Juvenil b
Juvenil bJuvenil b
Juvenil b
 

Similar to paper

Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...
Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...
Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...
IJERA Editor
 
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony OptimizationA Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
IRJET Journal
 
Route optimization via improved ant colony algorithm with graph network
Route optimization via improved ant colony algorithm with  graph networkRoute optimization via improved ant colony algorithm with  graph network
Route optimization via improved ant colony algorithm with graph network
International Journal of Reconfigurable and Embedded Systems
 
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
IRJET Journal
 
Improved Particle Swarm Optimization
Improved Particle Swarm OptimizationImproved Particle Swarm Optimization
Improved Particle Swarm Optimization
vane sanchez
 
an improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negociosan improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negocios
Carlos Iza
 
A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...
A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...
A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...
Kristen Carter
 
Solving QoS multicast routing problem using ACO algorithm
Solving QoS multicast routing problem using ACO algorithmSolving QoS multicast routing problem using ACO algorithm
Solving QoS multicast routing problem using ACO algorithm
Abdullaziz Tagawy
 
Paper id 2320143
Paper id 2320143Paper id 2320143
Paper id 2320143IJRAT
 
Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...
Ali Shahed
 
Optimizing GIS based Systems
Optimizing GIS based SystemsOptimizing GIS based Systems
Optimizing GIS based Systems
Ajinkya Deshpande
 
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMSA COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
ecij
 
A collaborated genetic with lion optimization algorithms for improving the qu...
A collaborated genetic with lion optimization algorithms for improving the qu...A collaborated genetic with lion optimization algorithms for improving the qu...
A collaborated genetic with lion optimization algorithms for improving the qu...
IAESIJAI
 
A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...
csandit
 
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
cscpconf
 
10222ijcsity01 (1).pdf
10222ijcsity01 (1).pdf10222ijcsity01 (1).pdf
10222ijcsity01 (1).pdf
ijcsity
 
UAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATION
UAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATIONUAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATION
UAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATION
ijcsity
 
Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...
IJECEIAES
 
A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...
A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...
A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...
Joshua Gorinson
 

Similar to paper (20)

Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...
Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...
Optimized Robot Path Planning Using Parallel Genetic Algorithm Based on Visib...
 
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony OptimizationA Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
 
Route optimization via improved ant colony algorithm with graph network
Route optimization via improved ant colony algorithm with  graph networkRoute optimization via improved ant colony algorithm with  graph network
Route optimization via improved ant colony algorithm with graph network
 
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
 
Improved Particle Swarm Optimization
Improved Particle Swarm OptimizationImproved Particle Swarm Optimization
Improved Particle Swarm Optimization
 
an improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negociosan improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negocios
 
A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...
A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...
A Dynamic Vehicular Traffic Control Using Ant Colony And Traffic Light Optimi...
 
Solving QoS multicast routing problem using ACO algorithm
Solving QoS multicast routing problem using ACO algorithmSolving QoS multicast routing problem using ACO algorithm
Solving QoS multicast routing problem using ACO algorithm
 
Paper id 2320143
Paper id 2320143Paper id 2320143
Paper id 2320143
 
Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...
 
Optimizing GIS based Systems
Optimizing GIS based SystemsOptimizing GIS based Systems
Optimizing GIS based Systems
 
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMSA COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
 
A collaborated genetic with lion optimization algorithms for improving the qu...
A collaborated genetic with lion optimization algorithms for improving the qu...A collaborated genetic with lion optimization algorithms for improving the qu...
A collaborated genetic with lion optimization algorithms for improving the qu...
 
A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...
 
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
 
10222ijcsity01 (1).pdf
10222ijcsity01 (1).pdf10222ijcsity01 (1).pdf
10222ijcsity01 (1).pdf
 
UAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATION
UAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATIONUAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATION
UAV PATH PLANNING USING GENETIC ALGORITHMWITH PARALLEL IMPLEMENTATION
 
Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...
 
Zeleke_Poster14
Zeleke_Poster14Zeleke_Poster14
Zeleke_Poster14
 
A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...
A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...
A Robust Algorithm To Solve The Signal Setting Problem Considering Different ...
 

paper

  • 1. MULTIOBJECTIVE VEHICLE ROUTING WITH ANT COLONY OPTIMIZATION SUPERVISED BY PARTICLE SWARM INTELLIGENCE Aditya Ramkumar , Harikrishnan M , Selvaraj Rajkanna S , Sreejith P Guided by Dr. Sathish kumar (Nehru Institute of Technology , Coimbatore , India ) ABSTARCT Network can be defined as group of nodes connected together generally for purpose of communicating with eachother. multi objective vehicle routing challenges to satisfy all the required constraints like distance , capacity and interlinking conditions. Various routing algorithms are used todetermine the optimal solution to this problem.In this project combinatorial approach using ant colony optimization (ACO) and particle swarm intelligence (PSI) is carried out inorder to determine optimal path for vehicle routing problems (VRP) ACO is supervised by PSI to reduce the possiblity of ants revolving in the local optima.In ACO local search (ACOLS) afloyd warshall algorithm , which is all pair ashortest path technique is applied in order ato check all possible routes.This paper focuses on finding an optimal routing strategy based on linear networks. It is achieved by avoiding greedy algorithm and focusing on ACO and PSI methods. KEYWORDS Vehicle routing problems, Ant colony optimization , Particle swarm optimization, Floyd warshall algorithm , ant colony supervised by particle swarm . INTRODUCTION Logistic management is the new and rising problem for organizations with manufacture and supply. These problems received increasing attention from government and business organizations. Green manufacturing is one of the top concerns of every product based organization. One of the actions taken by such companies towards this is to optimize the end product supply using proper routing strategies. The distribution and collection within the system depends upon customer needs and satisfaction provided with concerns about the nature. In the case of most of delivery and pickups, utilization of vehicles will produce a measurable amount of tangible and intangible cost. This will impact in both production and in natural concerns. Utilization of vehicle increases significantly when product brought to customer with returning back to a depot. Hence vehicle routing are more effective in bi-directional logistics. There are many categories in vehicle routing problems and strategies. Most of these variants are based on objectives of routing strategy. Objectives can be time, time window, capacity of vehicle, traffic conditions and so on. Capacited vehicle routing problems and VRPSDPTW are more challenging combinatorial optimization problems. Studies on such problems are scarce since capacity constraints along with time windows are more complex problems and difficult to solve. Optimization strategies on such problems will be considering a bounded service area and the
  • 2. techniques will be chosen according to the areas. ANT COLONY OPTIMIZATION In computer science and operations research, the Ant Colony Optimization algorithm (ACO) is a probabilistic technique for solving computational problems which can be reduced to finding good paths through graphs. This algorithm is a member of the Ant Colony Algorithms family, in swarm intelligence methods, and it constitutes some metaheuristic optimizations. Initially proposed by Marco Dorigo in 1992 in his PhD thesis, the first algorithm was aiming to search for an optimal path in a graph, based on the behavior of ants seeking a path between their colony and a source of food. The original idea has since diversified to solve a wider class of numerical problems, and as a result, several problems have emerged, drawing on various aspects of the behavior of ants. PARTICLE SWARM OPTIMIZATION Particle swarm optimization (PSO) is a population based stochastic optimization technique developed by Dr. Eberhart and Dr. Kennedy in 1995, inspired by social behavior of bird flocking or fish schooling. PSO shares many similarities with evolutionary computation techniques such as Genetic Algorithms (GA). The system is initialized with a population of random solutions and searches for optima by updating generations. However, unlike GA, PSO has no evolution operators such as crossover and mutation. In PSO, the potential solutions, called particles, fly through the problem space by following the current optimum particles. The detailed information will be given in following sections. Compared to GA, the advantages of PSO are that PSO is easy to implement and there are few parameters to adjust. PSO has been successfully applied in many areas: function optimization, artificial neural network training, fuzzy system control, and other areas where GA can be applied. After finding the two best values, the particle updates its velocity and positions with following equation (a) and (b). v[] = v[] + c1 * rand() * (pbest[] - present[]) + c2 * rand() * (gbest[] - present[]) (a) present[] = persent[] + v[] (b) v[] is the particle velocity, persent[] is the current particle (solution). pbest[] and gbest[] are defined as stated before. rand () is a random number between (0,1). c1, c2 are learning factors. usually c1 = c2 = 2. FLOYD WARSHALL ALGORITHM Floyd–Warshall algorithm is an algorithm for finding shortest paths in a weighted graph with positive or negative edge weights (but with no negative cycles).[1][2]A single execution of the algorithm will find the lengths (summed weights) of the shortest paths between all pairs of vertices, though it does not return details of the paths themselves. Versions of the algorithm can also be used for finding the transitive closure of a relation, or (in connection with theSchulze voting system) widest paths between all pairs of vertices in a weighted graph.The Floyd–Warshall algorithm compares all possible paths through the graph between each pair of vertices. It is able to do this with Θ(| V|3)comparisons in a graph. This is remarkable considering that there may be up to Ω(| V|2)edges in the
  • 3. graph, and every combination of edges is tested. It does so by incrementally improving an estimate on the shortest path between two vertices, until the estimate is optimal. EXISTING SYSTEM The multi objective algorithm of the existing model uses a simple shortest path strategy with simultaneous pickup and delivery choice. It provides an interconnection of local searches.Time windowing technique is applied which sets a maximum time limit after which the trip will stop. MULTI OBJECTIVE LOCAL SEARCH (MOLS) It uses different local search procedures to optimize different objectivesThe different solutions are based on the amount of weight to be collected from each area.In denser areas with less traffic large capacity vehicles are used (MOLS 1). In denser areas with high traffic vehicles with largest capacity are took in to practice (MOLS 2).In scarce areas with less traffic vehicles with minimum capacity are used (MOLS 3).In scarce areas with high traffic medium capacity vehicles are used (MOLS 4). MULTI OBJECTIVE MEMTIC ALGORITHM (MOMA) Its used for solving simultaneous delivery and pick up problems.It divides the system in to n sub problems using a weighted sum approach.It uses a crossover operator to determine the paths.By using crossover operator the path for the second vehicle route is obtained by inheriting routes from parents. MOMA acts as supervisor to MOLS algorithm. PROPOSED SYSTEM A multi objective routing algorithm that emphasize on finding the shortest path from currently located node satisfying some other objectives such as weight, traffic etc.A linearly expanded network model could make the application of such algorithm in the real world problems .Using a routing algorithm that will avoid the creation of a tree formated network. This will avoid complexities in the real world applications. A linear network model will reduce the overhead due to the traversal in side a minimum spanning tree.Using ant colony optimization(ACO) and particle swarm optimization(PSO) for node selection can reduce the total distance travelled. ALGOTITHM ACOLS-PSI while(count<values) { for(int a=0;a<values-1;a++) { for(int b=0;b<values-1;b++) { for(int c=0;c<values-1;c++) { if(value.get(b).bond.get(a).distance + value.get(a).bond.get(c).distance < value.get(b).bond.get(c).distance) { value.get(b).bond.get(c).distance = value.get(b).bond.get(a).distance + value.get(a).bond.get(c).distance; }}}} for (int i=0; i<values-1; i++) { for (int j=i+1; j<values; j++) {
  • 4. dist=value.get(i).bond.get(j).distance; if (dist<d_min) { d_min=dist; pbest=d_min; };};}; if(gbest>pbest) gbest=pbest; count++; }} void calc_attractive() { for (int i=0;i<values;i++) { value.get(i).calc_attractive(); };} EXPERIMENTAL ANALYSIS The ACOLS-PSI algorithm when compared with greedy algorithm (prims algorithm) produced an improvement of 8% on average. Also,another key notable point was that the efficiency of the algorithm improves when the system is wide and sparse. In denser areas the proposed system performs more or less similar to current system. Comparison of ACOLS-PSI with existing system (greedy algorithm local search) Sample number PSO supervised ACO Existing model (MOMA with greedy local search) Difference in distance (existing model - PSO with ACO) Distance saved (Difference in distance / existing model)*100 1 92820 100919 8099 8.02 % 2 143620 158272 14652 9.25 % 3 78950 85907 6957 7.86 % 4 94250 102500 8250 8.04 % 5 99259 107608 8349 7.75 % 6 153040 173116 20076 11.59 % 7 66290 72262 5972 8.26 % 8 56549 58766 2217 3.77 % 9 161440 181998 20558 11.29 % 10 107180 115914 8734 7.53 % 11 97320 105840 8520 8.05 % 12 66020 73636 7616 10.34 %
  • 5. CONCLUSION AND FUTURE SCOPE This paper introduces a new approach towards vehicle routing problems by using a combination ACO and PSI. ACO is implemented using floyd warshall algorithm which determines all pair shortest paths instead of the commonly used greedy algorithm techniques. Another contribution of this paper is supervising the ACO local search by PSI to reduce the probability of ant wandering in the local optima. To further improve vehicle routing problems especially on wider and sparse network, this algorithm can be used as a benchmark. Furthermore, ACOLS-PSI algorithm can be combined with various other all pair shortest path or similar methods to generate a memetic algorithm to improve performance of vehicle routing problems. REFERENCES 1. Jiahai Wang, Ying Zhou, Yong Wang, Jun Zhang, C. L. Philip Chen and Zibin Zheng (2015) “Multiobjective Vehicle Routing Problems with Simultaneous Delivery and Pickup and Time Windows” IEEE Journal 2. Ying Zhou and Jiahai Wang (2014) “A Local Search-Based Multiobjective Optimization Algorithm for Multiobjective Vehicle Routing Problem with Time Windows” IEEE System journal 3. K. C. Tan, T. H. Lee, Y. H. Chewand L. H. Lee, Department of Electrical and Computer Engineering; National University of Singapore “A Multiobjective Evolutionary Algorithm for Solving Vehicle Routing Problem with Time Windows” IEEE Journal 4. Haihua Li, Zongyan Xu, Feifei Zhou, Military Transportation University Tianjin,” A Study on Vehicle Routing Problem with Fuzzy Demands Based on Improved Tabu Search” China (2012) Fourth International Conference on Computational and Information Sciences 5.Wang Xu-ping, XU Chuan-lei,Hu Xiang-pei Institute of Systems Engineering, Dalian University of Technology,” Genetic Algorithm for Vehicle Routing Problem with Time Windows and a Limited Number of Vehicles” (2008) International Conference on Management Science & Engineering 6. Imen Boudali, Wajdi Fki and Khaled Ghedira Department of Computing Sciences ISG, Tunis University, Tunisia “How to deal with the VRPTW by using multi- agent coalitions” IEEE journal 7. Peng Yong, Wang Xiaofeng ,Key Laboratory of Traffic & Transportation Chongqing Jiaotong University “Research on a Vehicle Routing Schedule to Reduce Fuel
  • 6. Consumption” 2009 International Conference on Measuring Technology 8. Li Guiyun College of Economics and Trade, Hunan University, China, “Research on Open Vehicle Routing Problem with Time Windows Based on Improved Genetic Algorithm” (2009) IEEE journal 9. Marco Antonio Cruz-Chavez, Ocotlan Diaz-Parra, J. A. Hernandez, Jose Crispin Zavala- Diaz, Martin G “Search Algorithm for the Constraint Satisfaction Problem of VRPTW” (2007) Fourth Congress of Electronics, IEEE journal 10. Bhawna Minocha ,Amity School of Computer Sciences Noida, C. Mohan Ambala College of Engineering and Applied Research Ambala, India, “Solution of VRPTW using Controlled Random Search Technique” (2011) IEEE journal 11.Shih-Pang Tseng, Chun-Wei Tsai, Ming-Chao Chiang, and Chu-Sing Yang National Sun Yat-sen University, Taiwan “A fast ant colony optimization for traveling salesman problem” (2010) IEEE journal 12.Ying Pei,Wenbo Wang, Song Zhang ,Ji Lin University ,Chang Chun, China (2012) International Conference on Computer Science and Electronics Engineering 13.Ping Chen, Houkuan Huang and Xingye Dong, School of Computer and Information Technology, Beijing Jiaotong University, “An Ant Colony System Based Heuristic Algorithm for the Vehicle Routing Problem with Simultaneous Delivery and Pickup” (2007) IEEE journal 14.Yi Zhang, Zhi-li Pei, Jin-hui Yang, Yan-chun Liang ,NSFC China, “An Improved Ant Colony Optimization Algorithm Based on Route Optimization and Its Applications in Travelling Salesman Problem” (2007) IEEE journal 15.Ning Tao,GUO Chen College of Information Science and Technology Dalian Maritime University,” Solving VRP using ant colony optimization algorithm”(2012) Fifth International Conference on Information and Computing Science 16. Abolfazl Zaraki, Control and instrumentation Engineering Dept- CIED University Technology, Malaysia, “Implementing Particle Swarm Optimization to Solve Economic Load Dispatch Problem” (2009) International Conference of Soft Computing and Pattern Recognition