Swarm Intelligence in Dynamic Environments

Size: px
Start display at page:

Download "Swarm Intelligence in Dynamic Environments"

Transcription

1 Swarm Intelligence in Dynamic Environments Shengxiang Yang Centre for Computational Intelligence (CCI) De Montfort University, Leicester LE1 9BH, UK Talk presented at the 2018 International Conference on Swarm Intelligence (ICSI 2018), Shanghai, China, June, 2018

2 Wish You All Happy Dragon Boat Festival! 端午节快乐! 2

3 Centre for Computational Intelligence, DMU CCI ( Mission: Developing fundamental theoretical and practical solutions to real-world problems using a variety of CI paradigms Members: 18 staff, research fellows, ~30 PhDs, visiting researchers Themes: EC, fuzzy logic, neural networks, data mining, robotics, game Funding: Research Councils/Charities: EPSRC, ESRC, EU FP7 & Horizon 2020, Royal Society, Royal Academy of Eng., Innovate UK, KTP, Nuffield Trust Government: Leicester City Council, DTI Industries: Lachesis, EMDA, RSSB, Network Rail, etc. Collaborations: Universities: UK, USA, Spain, and China Industries and local governments Teaching/Training: DTP-IS: University Doctor Training Programme in Intelligent Systems MSc: Intelligent Systems (& Robotics); Data Analytics; BI & Data Mining BSc: AI with Robotics; Computer Game Programming; Math; Comp Sci YouTube page: 3

4 Outline of the Talk Introduction to swarm intelligence (SI) Case studies Future directions SI for dynamic optimisation problems (DOPs) Summary 4

5 Swarm Intelligence (SI) in Nature/Biology Swarm Intelligence (SI): Intelligence achieved by the collective behavior of a swarm of agents (individuals) A system consists of a population of agents that interact locally with one another and with their environment Each agent follows very simple rules (may involve self-learning and social-learning) Interactions between such agents lead to the emergence of "intelligent" global behavior, unknown to the individual agents 5

6 A Simple Example Ants leave pheromone trails to point the way to food (E. O. Wilson 1962) 6

7 Swarm Intelligence in Optimization Encapsulates a class of optimisation algorithms inspired by the SI phenomena in nature/biology Particle Swarm Optimization (PSO): Bird flocking Ant Colony Optimization (ACO): Ant foraging Artificial Bee Colony (ABC) algorithms: Bee colony Bacterial Foraging Optimization (BFO): Bacterial growth Firefly Algorithm (FA): Firefly flashing 7

8 Ant Colony Optimization (ACO) Proposed by Dorigo et al. (1996) ACO mimics the behaviour of ants searching for food The idea: ants walk on the arcs of graph while reading and writing pheromones until they converge into a path The shorter the path the more pheromone deposited Standard ACO consists of two phases: Forward mode: Construct solutions Backward mode: Pheromone update 8

9 Forward Mode: Construct Solutions Ant k constructs a tour probabilistically is the existing pheromone between cities i and j is the heuristic information between cities i and j is the list of nearest unvisited cities of city i α and β are constant parameters that determine the influence of τ and η, respectively 9

10 Backward Mode: Pheromone Update Ant k updates its pheromone trails Deposit pheromone is the tour constructed by ant k is the amount of pheromone to be deposited Evaporate pheromone where ρ is the evaporation rate Helps ants to forget bad decisions (poor solutions) made in the past (previous iteration): If an arc is not chosen by ants for a number of iterations, its associated pheromone value decreases exponentially 10

11 SI Applications Advantages of SI: Multiple solutions in a single run No strict requirements to problems Easy to use Widely used for optimisation and search problems Financial and economical systems Transportation and logistics systems Industry engineering Automatic programming, art and music design... 11

12 SI for Dynamic Optimization Problems: Motivation Traditionally research on SI has focused on static problems Aims to find optimum quickly and precisely in the search space But, many real-world problems are dynamic optimisation problems (DOPs), where changes occur over time Transport systems: travel time between nodes may change Logistics: customer demands may change 12

13 What Are DOPs? In general terms, optimisation problems that change over time are called dynamic problems or time-dependent problems: F = f(x, S, t) where X: decision variable(s); S: parameters; t: time DOPs: a special class of dynamic problems that are solved online by an algorithm as time goes by 13

14 Why DOPs Challenging SI? For DOPs, optima may move over time in search space We need to track the moving optima over time DOPs challenge traditional SI algorithms Once converged, hard for an SI to escape from the old optimum 14

15 Why SI for DOPs? Many real-life problems are DOPs Desirable to present solutions to decision makers over time SI methods, once properly enhanced, are good choice Inspired by biological behaviour, always in dynamic environments Intrinsically, should be fine to deal with DOPs Research on SI for DOPs rises recently 15

16 SI for DOPs: Things to Do To detect potential environmental changes Success rate of detection Cost of detection To track the changing optima To expect a steady and fast change response To reduce the cost of tracking (given the budget limit, i.e., time, memory) 16

17 Change Detection Approaches Why is detection important? When a change occurs, archived solutions may become outdated SI would get misled if archived solutions are not re-evaluated in time Two ways of detecting changes: Individual-level detection: fast but not robust Population-level detection: slow but robust Both methods could fail to detect changes (not 100% guaranteed) 17

18 Individual-level Change Detection Re-evaluate some individuals fitness every generation Check the discrepancy between their current and previous fitness Success rate of detection depends on Detectability of environmental changes Location of detectors placed detectors before a change re-evaluated detectors due to a change time-independent fitness segments able to detect unable to detect 18

19 Population-level Change Detection Population-related statistical information, i.e., distribution, is assessed in every generation Check the significance of variation in statistical information population distribution before a change population distribution after a change Less sensitive to noise but possibly higher computational cost 19

20 Response Approaches How about restarting an SI algorithm after a change? Natural and easy choice But, not good choice due to: It may be inefficient, wasting computational resources It may lead to very different solutions before and after a change. For real-world problems, we may expect solutions to remain similar Extra approaches are needed to enhance SI for DOPs Typical approaches: Memory: store and reuse useful information Diversity: handle convergence directly Multi-population: co-operate sub-populations Hybridization: hybridize SI with local search or other metaheuristics M. Mavrovouniotis, C. Li, and S. Yang. A survey of swarm intelligence for dynamic optimization: Algorithms and applications. Swarm and Evolutionary Computation, 33: 1-17, April

21 Memory-based Approaches Cyclic DOPs: optimal solutions repeatedly return locations Memory: to store history information for future use Challenges: What information to store? When and how to retrieve memory? How to update memory? 21

22 Diversity-based Approaches Diversity increase: introduce diversity after a change Partially random restart, hyper-mutation, variable local search select Change detected? YES NO increase diversity mutate/recombine 22

23 Diversity-based Approaches Diversity maintenance: maintain diversity throughout the run (even if no change occurs) Random immigrants select maintain diversity mutate/recombine 23

24 Multi-population Approaches Idea: Use several cooperative populations Populations evolve independently in different areas of search space Populations exclude each other to avoid overlap When optimum moves, nearby population will take action 24

25 Hybridization Approaches Idea: Using hybridization technique to improve the performance of SI for DOPs Hybridize SI with local search + diversity schemes, e.g.: P-ACO: Hybridize ACO with local search and random immigrants Multi-strategy ensemble PSO (MEPSO): Hybridize PSO with Gaussian local search + differential mutation Hybridize SI with other meta-heuristic methods PSO + Cellular Aotomata PSO + Fuzzy C-means M. Mavrovouniotis, S. Yang, A memetic ant colony optimization algorithm for the dynamic travelling salesman problem, Soft Comput. 15 (7) (2011) W. Du, B. Li, Multi-strategy ensemble particle swarm optimization for dynamic optimization, Inf. Sci. 178 (15) (2008) A. Hashemi, M. Meybodi, A multi-role cellular PSO for dynamic environments, in: 14th International Computer Conference (CSICC 2009), 2009, pp M. Kamosi, A. Hashemi, M. Meybodi, A hibernating multi-swarm optimization algorithm for dynamic environments, in: nd World Congress on Nature and Biologically Inspired Computing, 2010,

26 Remarks on Enhancing Approaches No clear winner among the approaches Memory is efficient for cyclic environments Multi-population is good for multimodal problems Able to maintain diversity The search ability will decrease if too many sub-populations Diversity schemes are usually useful Guided immigrants may be more efficient Thumb of rule: balancing exploration & exploitation over time 26

27 Case Study: Multi-swarm PSO for Continuous DOPs Recently, a framework of multi-population approaches Use single linkage hierarchical clustering to create populations Each population will search one peak in the fitness landscape An overcrowding scheme to remove unnecessary populations A special rule to decide proper moments to increase diversity without change detection An adaptive method to create a proper number of populations needed C. Li and S. Yang. A general framework of multi-population methods with clustering in undetectable dynamic environments. IEEE Transactions on Evolutionary Computation, 16(4): , August 2012 C. Li, S. Yang, and M. Yang. An adaptive multi-swarm optimizer for dynamic optimization problems. Evolutionary Computation, 22(4): , Winter 2014 C. Li, T. T. Nguyen, M. Yang, M. Mavrovouniotis, and S. Yang. An adaptive multi-population framework for locating and tracking multiple optima. IEEE Transactions on Evolutionary Computation, 20(4): ,

28 Demo: Multi-swarm PSO Using Clustering 28

29 Case Study: ACO for Combinatorial DOPs A train that arrives late at a station will miss its scheduled time slot and may have to be reallocated to a new platform Multiple trains may be delayed in succession, each new delay changes the problem Image source: Leicester Station Track Layout Dynamic Railway Platform Reallocation Problem (DRPRP) reallocates multiple successive delayed trains to new timeslots on railway platforms to minimise the ongoing delay in the system We considered Leicester station A busy UK railway station with 4 bi-directional platforms and trains arriving from 4 different directions We consider the effect of the reallocation decisions not only at the station but also on the remainder of these trains journey 29

30 Modelling the Problem The model was created from Network Rail s train schedule data from Integrated Train Planning System (ITPS) From this we extract details of the movement of trains through the station and the movement of all trains at each timing point on each train s route We consider timing points within 50 miles of Leicester station (225 timing points) An example of the schedule feed data Some timing points in the problem 30

31 Leicester Station Simulation 31

32 Max-Min Ant System (MMAS) In ACO ants communicate indirectly via pheromone trails We model the problem with a directed edge graph Ants choose next node based on pheromone trails and problem-specific heuristics Each node in the graph represents a train and the platform to assign the train to An ant starts on node 0 The ant chooses next node probabilistically Ant Solution: <Train A on Platform 2> The ant now chooses the next train & platform Ant Solution: <Train A on Platform 2, Train B on Platform 3> After all ants have made a tour, all pheromone trails are evaporated Pheromone is laid down on the best ant s tour 32

33 Algorithm Design After a Dynamic Change: More trains have arrived but some trains have passed through the station The graph is updated but pheromones are kept between changes to retain useful information from before change Unnecessary Platform Reallocation: MMAS has no mechanism to persuade it against unnecessarily reallocating trains to platforms. To resolve this we: 1. Add a heuristic based on the physical distance between platforms 2. Introduce a best-so-far ant replacement scheme that discourages unnecessary reallocations of trains to new platforms Image source: 33

34 Comparison Algorithm First Free Platform (FFP) Discussions with a Network Rail Station Master established that a technique often used to reallocate delayed trains to platforms is to find the first free platform as close as possible to the original platform We compared our MMAS algorithm to a heuristic using this principle Modelling Dynamism The frequency of change f is the time interval between delayed trains. The magnitude of change m is how much the train is delayed by In this investigation trains were delayed by 10, 20 and 30 min with gaps of 10, 20 and 30 min to give 9 different dynamic scenarios J. Eaton and S. Yang. Railway platform reallocation after dynamic perturbations using ant colony optimisation. Proceedings of the 2016 IEEE Symposium Series on Computational Intelligence, pp. 1-8,

35 Experimental Results Low frequency, high magnitude changes High frequency, high magnitude changes 35

36 SI for Dynamic Multi-objective Optimization So far, mainly dynamic single-objective optimization Dynamic multi-objective optimization problems (DMOPs) Even more challenging Recently, rising interest in studying SI for DMOPs Eaton et al. (2017) applied ACO for the dynamic multi-objective railway junction rescheduling problem J. Eaton, S. Yang, and M. Gongora. Ant colony optimization for simulated dynamic multi-objective railway junction rescheduling. IEEE Transactions on Intelligent Transportation Systems, 18(11): ,

37 SI for DOPs: Challenging Issues Detecting changes: Most studies assume that changes are easy to detect or visible to an algorithm whenever occurred In fact, changes are difficult to detect for many DOPs Understanding the characteristics of DOPs: What characteristics make DOPs easy or difficult? Little work, needs much more effort Analysing the behaviour of SI methods for DOPs: Requiring more theoretical analysis tools Big question: Which SI methods for what DOPs? Real world applications: How to model real-world DOPs? 37

38 Future Work The domain has attracted a growing interest recently But, far from well-studied New approaches needed: esp. hybrid approaches Theoretical analysis: greatly needed SI for DMOPs: deserves much more effort Real world applications: also greatly needed Fields: logistics, transport, MANETs, data streams, social networks,... 38

39 Summary SI for DOPs: important area The domain is still young and active Many challenges to be taken More young researchers are greatly welcome! Thanks! 39

40 Acknowledgements Two EPSRC funded projects on EC for DOPs EAs for DOPs: Design, Analysis and Applications Funding/Duration: over 600K/3.5 years (1/2008 7/2011) 567C38589BAC EC for Dynamic Optimisation in Network Environments Funding/Duration: 1M/4.5 years (2/2013 8/2017) 483BBADCD8FA Research team members: Research Fellows: Dr. Hui Cheng, Dr. Crina Grosan, Dr. Changhe Li, Dr. Michalis Mavrovouniotis, Dr. Yong Wang, etc. PhD students: Changhe Li, Michalis Mavrovouniotis, Shouyong Jiang, Jayne Eaton, etc. Research co-operators: Prof. Xin Yao, Prof. Juergen Branke, Dr. Renato Tinos, Dr. Hendrik Richter, Dr. Trung Thanh Nguyen, Dr. Juan Zou, etc. 40

41 Relevant Information IEEE CIS Task Force on EC in Dynamic and Uncertain Environments Source codes: Books and survey papers: Y. Jin, J. Branke. Evolutionary optimization in uncertain environments A survey. IEEE Trans Evol Comput, 9(3): , 2005 T. T. Nguyen, S. Yang, J. Branke. Evolutionary dynamic optimization: A survey of the state of the art. Swarm and Evolutionary Computation, 6: 1-24, 2012 S. Yang, X. Yao. Evolutionary Computation for Dynamic Optimization Problems. Springer,

1) Complexity, Emergence & CA (sb) 2) Fractals and L-systems (sb) 3) Multi-agent systems (vg) 4) Swarm intelligence (vg) 5) Artificial evolution (vg)

1) Complexity, Emergence & CA (sb) 2) Fractals and L-systems (sb) 3) Multi-agent systems (vg) 4) Swarm intelligence (vg) 5) Artificial evolution (vg) 1) Complexity, Emergence & CA (sb) 2) Fractals and L-systems (sb) 3) Multi-agent systems (vg) 4) Swarm intelligence (vg) 5) Artificial evolution (vg) 6) Virtual Ecosystems & Perspectives (sb) Inspired

More information

SWARM INTELLIGENCE. Mario Pavone Department of Mathematics & Computer Science University of Catania

SWARM INTELLIGENCE. Mario Pavone Department of Mathematics & Computer Science University of Catania Worker Ant #1: I'm lost! Where's the line? What do I do? Worker Ant #2: Help! Worker Ant #3: We'll be stuck here forever! Mr. Soil: Do not panic, do not panic. We are trained professionals. Now, stay calm.

More information

Shuffled Complex Evolution

Shuffled Complex Evolution Shuffled Complex Evolution Shuffled Complex Evolution An Evolutionary algorithm That performs local and global search A solution evolves locally through a memetic evolution (Local search) This local search

More information

Biologically-inspired Autonomic Wireless Sensor Networks. Haoliang Wang 12/07/2015

Biologically-inspired Autonomic Wireless Sensor Networks. Haoliang Wang 12/07/2015 Biologically-inspired Autonomic Wireless Sensor Networks Haoliang Wang 12/07/2015 Wireless Sensor Networks A collection of tiny and relatively cheap sensor nodes Low cost for large scale deployment Limited

More information

NAVIGATION OF MOBILE ROBOT USING THE PSO PARTICLE SWARM OPTIMIZATION

NAVIGATION OF MOBILE ROBOT USING THE PSO PARTICLE SWARM OPTIMIZATION Journal of Academic and Applied Studies (JAAS) Vol. 2(1) Jan 2012, pp. 32-38 Available online @ www.academians.org ISSN1925-931X NAVIGATION OF MOBILE ROBOT USING THE PSO PARTICLE SWARM OPTIMIZATION Sedigheh

More information

Computational Intelligence Optimization

Computational Intelligence Optimization Computational Intelligence Optimization Ferrante Neri Department of Mathematical Information Technology, University of Jyväskylä 12.09.2011 1 What is Optimization? 2 What is a fitness landscape? 3 Features

More information

CHAPTER 5 PSO AND ACO BASED PID CONTROLLER

CHAPTER 5 PSO AND ACO BASED PID CONTROLLER 128 CHAPTER 5 PSO AND ACO BASED PID CONTROLLER 5.1 INTRODUCTION The quality and stability of the power supply are the important factors for the generating system. To optimize the performance of electrical

More information

Swarm Intelligence. Corey Fehr Merle Good Shawn Keown Gordon Fedoriw

Swarm Intelligence. Corey Fehr Merle Good Shawn Keown Gordon Fedoriw Swarm Intelligence Corey Fehr Merle Good Shawn Keown Gordon Fedoriw Ants in the Pants! An Overview Real world insect examples Theory of Swarm Intelligence From Insects to Realistic A.I. Algorithms Examples

More information

Exploring and Analyzing Evolutionary Optimization in Different Environments

Exploring and Analyzing Evolutionary Optimization in Different Environments J. Appl. Environ. Biol. Sci., 6(8)98-111, 2016 2016, TextRoad Publication ISSN: 2090-4274 Journal of Applied Environmental and Biological Sciences www.textroad.com Exploring and Analyzing Evolutionary

More information

Research Article ACO-Based Sweep Coverage Scheme in Wireless Sensor Networks

Research Article ACO-Based Sweep Coverage Scheme in Wireless Sensor Networks Sensors Volume 5, Article ID 89, 6 pages http://dx.doi.org/.55/5/89 Research Article ACO-Based Sweep Coverage Scheme in Wireless Sensor Networks Peng Huang,, Feng Lin, Chang Liu,,5 Jian Gao, and Ji-liu

More information

Improvement of Robot Path Planning Using Particle. Swarm Optimization in Dynamic Environments. with Mobile Obstacles and Target

Improvement of Robot Path Planning Using Particle. Swarm Optimization in Dynamic Environments. with Mobile Obstacles and Target Advanced Studies in Biology, Vol. 3, 2011, no. 1, 43-53 Improvement of Robot Path Planning Using Particle Swarm Optimization in Dynamic Environments with Mobile Obstacles and Target Maryam Yarmohamadi

More information

CONTINUOUS FIREFLY ALGORITHM FOR OPTIMAL TUNING OF PID CONTROLLER IN AVR SYSTEM

CONTINUOUS FIREFLY ALGORITHM FOR OPTIMAL TUNING OF PID CONTROLLER IN AVR SYSTEM Journal of ELECTRICAL ENGINEERING, VOL. 65, NO. 1, 2014, 44 49 CONTINUOUS FIREFLY ALGORITHM FOR OPTIMAL TUNING OF PID CONTROLLER IN AVR SYSTEM Omar Bendjeghaba This paper presents a tuning approach based

More information

Research Article Analysis of Population Diversity of Dynamic Probabilistic Particle Swarm Optimization Algorithms

Research Article Analysis of Population Diversity of Dynamic Probabilistic Particle Swarm Optimization Algorithms Mathematical Problems in Engineering Volume 4, Article ID 765, 9 pages http://dx.doi.org/.55/4/765 Research Article Analysis of Population Diversity of Dynamic Probabilistic Particle Swarm Optimization

More information

Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique

Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique Vivek Kumar Bhatt 1, Dr. Sandeep Bhongade 2 1,2 Department of Electrical Engineering, S. G. S. Institute of Technology

More information

Review of Soft Computing Techniques used in Robotics Application

Review of Soft Computing Techniques used in Robotics Application International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 3 (2013), pp. 101-106 International Research Publications House http://www. irphouse.com /ijict.htm Review

More information

TRAFFIC SIGNAL CONTROL WITH ANT COLONY OPTIMIZATION. A Thesis presented to the Faculty of California Polytechnic State University, San Luis Obispo

TRAFFIC SIGNAL CONTROL WITH ANT COLONY OPTIMIZATION. A Thesis presented to the Faculty of California Polytechnic State University, San Luis Obispo TRAFFIC SIGNAL CONTROL WITH ANT COLONY OPTIMIZATION A Thesis presented to the Faculty of California Polytechnic State University, San Luis Obispo In Partial Fulfillment of the Requirements for the Degree

More information

Decision Science Letters

Decision Science Letters Decision Science Letters 3 (2014) 121 130 Contents lists available at GrowingScience Decision Science Letters homepage: www.growingscience.com/dsl A new effective algorithm for on-line robot motion planning

More information

Evolutionary robotics Jørgen Nordmoen

Evolutionary robotics Jørgen Nordmoen INF3480 Evolutionary robotics Jørgen Nordmoen Slides: Kyrre Glette Today: Evolutionary robotics Why evolutionary robotics Basics of evolutionary optimization INF3490 will discuss algorithms in detail Illustrating

More information

Instructors: Prof. Takashi Hiyama (TH) Prof. Hassan Bevrani (HB) Syafaruddin, D.Eng (S) Time: Wednesday,

Instructors: Prof. Takashi Hiyama (TH) Prof. Hassan Bevrani (HB) Syafaruddin, D.Eng (S) Time: Wednesday, Intelligent System Application to Power System Instructors: Prof. Takashi Hiyama (TH) Prof. Hassan Bevrani (HB) Syafaruddin, D.Eng (S) Time: Wednesday, 10.20-11.50 Venue: Room 208 Intelligent System Application

More information

Lecture 10: Memetic Algorithms - I. An Introduction to Meta-Heuristics, Produced by Qiangfu Zhao (Since 2012), All rights reserved

Lecture 10: Memetic Algorithms - I. An Introduction to Meta-Heuristics, Produced by Qiangfu Zhao (Since 2012), All rights reserved Lecture 10: Memetic Algorithms - I Lec10/1 Contents Definition of memetic algorithms Definition of memetic evolution Hybrids that are not memetic algorithms 1 st order memetic algorithms 2 nd order memetic

More information

Artificial Intelligence. Cameron Jett, William Kentris, Arthur Mo, Juan Roman

Artificial Intelligence. Cameron Jett, William Kentris, Arthur Mo, Juan Roman Artificial Intelligence Cameron Jett, William Kentris, Arthur Mo, Juan Roman AI Outline Handicap for AI Machine Learning Monte Carlo Methods Group Intelligence Incorporating stupidity into game AI overview

More information

University of Luxembourg

University of Luxembourg University of Luxembourg Parallel Computing & Optimization Group (PCOG) November 27th, 2017 Belval Campus, MSA Prof. Pascal Bouvry Dr. Grégoire Danoy Parallel Computing and Optimization Group 20+ Researchers/Engineers

More information

Current Trends in Technology and Science ISSN: Volume: VI, Issue: VI

Current Trends in Technology and Science ISSN: Volume: VI, Issue: VI 784 Current Trends in Technology and Science Base Station Localization using Social Impact Theory Based Optimization Sandeep Kaur, Pooja Sahni Department of Electronics & Communication Engineering CEC,

More information

AIS and Swarm Intelligence : Immune-inspired Swarm Robotics

AIS and Swarm Intelligence : Immune-inspired Swarm Robotics AIS and Swarm Intelligence : Immune-inspired Swarm Robotics Jon Timmis Department of Electronics Department of Computer Science York Center for Complex Systems Analysis jtimmis@cs.york.ac.uk http://www-users.cs.york.ac.uk/jtimmis

More information

Mehrdad Amirghasemi a* Reza Zamani a

Mehrdad Amirghasemi a* Reza Zamani a The roles of evolutionary computation, fitness landscape, constructive methods and local searches in the development of adaptive systems for infrastructure planning Mehrdad Amirghasemi a* Reza Zamani a

More information

An Introduction to Swarm Intelligence Issues

An Introduction to Swarm Intelligence Issues An Introduction to Swarm Intelligence Issues Gianni Di Caro gianni@idsia.ch IDSIA, USI/SUPSI, Lugano (CH) 1 Topics that will be discussed Basic ideas behind the notion of Swarm Intelligence The role of

More information

Swarming the Kingdom: A New Multiagent Systems Approach to N-Queens

Swarming the Kingdom: A New Multiagent Systems Approach to N-Queens Swarming the Kingdom: A New Multiagent Systems Approach to N-Queens Alex Kutsenok 1, Victor Kutsenok 2 Department of Computer Science and Engineering 1, Michigan State University, East Lansing, MI 48825

More information

NASA Swarmathon Team ABC (Artificial Bee Colony)

NASA Swarmathon Team ABC (Artificial Bee Colony) NASA Swarmathon Team ABC (Artificial Bee Colony) Cheylianie Rivera Maldonado, Kevin Rolón Domena, José Peña Pérez, Aníbal Robles, Jonathan Oquendo, Javier Olmo Martínez University of Puerto Rico at Arecibo

More information

EVALUATION ALGORITHM- BASED ON PID CONTROLLER DESIGN FOR THE UNSTABLE SYSTEMS

EVALUATION ALGORITHM- BASED ON PID CONTROLLER DESIGN FOR THE UNSTABLE SYSTEMS EVALUATION ALGORITHM- BASED ON PID CONTROLLER DESIGN FOR THE UNSTABLE SYSTEMS Erliza Binti Serri 1, Wan Ismail Ibrahim 1 and Mohd Riduwan Ghazali 2 1 Sustanable Energy & Power Electronics Research, FKEE

More information

Applications of Swarm Intelligence

Applications of Swarm Intelligence Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IJCSMC, Vol. 2, Issue.

More information

Surveillance strategies for autonomous mobile robots. Nicola Basilico Department of Computer Science University of Milan

Surveillance strategies for autonomous mobile robots. Nicola Basilico Department of Computer Science University of Milan Surveillance strategies for autonomous mobile robots Nicola Basilico Department of Computer Science University of Milan Intelligence, surveillance, and reconnaissance (ISR) with autonomous UAVs ISR defines

More information

Anca ANDREICA Producția științifică

Anca ANDREICA Producția științifică Anca ANDREICA Producția științifică Lucrări categoriile A, B și C Lucrări categoriile A și B puncte 9 puncte Lucrări categoria A A. Agapie, A. Andreica, M. Giuclea, Probabilistic Cellular Automata, Journal

More information

A Bio-inspired Multi-Robot Coordination Approach

A Bio-inspired Multi-Robot Coordination Approach A Bio-inspired Multi-Robot Coordination Approach Yan Meng, Ọlọrundamilọla Kazeem and Jing Gan Department of Electrical and Computer Engineering Stevens Institute of Technology, Hoboen, NJ 07030 yan.meng@stevens.edu,

More information

PSYCO 457 Week 9: Collective Intelligence and Embodiment

PSYCO 457 Week 9: Collective Intelligence and Embodiment PSYCO 457 Week 9: Collective Intelligence and Embodiment Intelligent Collectives Cooperative Transport Robot Embodiment and Stigmergy Robots as Insects Emergence The world is full of examples of intelligence

More information

Power System Stability and Optimization Techniques: An Overview

Power System Stability and Optimization Techniques: An Overview RESEARCH ARTICLE OPEN ACCESS Power System Stability and Optimization Techniques: An Overview Monika 1, Balwinder Singh 2, Rintu Khanna 3 1 Research Scholar, PEC University of Technology,Chandigarh, goelmonika545@gmail.com

More information

Subsumption Architecture in Swarm Robotics. Cuong Nguyen Viet 16/11/2015

Subsumption Architecture in Swarm Robotics. Cuong Nguyen Viet 16/11/2015 Subsumption Architecture in Swarm Robotics Cuong Nguyen Viet 16/11/2015 1 Table of content Motivation Subsumption Architecture Background Architecture decomposition Implementation Swarm robotics Swarm

More information

Path Planning for Mobile Robots Based on Hybrid Architecture Platform

Path Planning for Mobile Robots Based on Hybrid Architecture Platform Path Planning for Mobile Robots Based on Hybrid Architecture Platform Ting Zhou, Xiaoping Fan & Shengyue Yang Laboratory of Networked Systems, Central South University, Changsha 410075, China Zhihua Qu

More information

INTRODUCTION. a complex system, that using new information technologies (software & hardware) combined

INTRODUCTION. a complex system, that using new information technologies (software & hardware) combined COMPUTATIONAL INTELLIGENCE & APPLICATIONS INTRODUCTION What is an INTELLIGENT SYSTEM? a complex system, that using new information technologies (software & hardware) combined with communication technologies,

More information

Performance Analysis of Optimal Scheduling Based Firefly algorithm in MIMO system

Performance Analysis of Optimal Scheduling Based Firefly algorithm in MIMO system Performance Analysis of Optimal Scheduling Based Firefly algorithm in MIMO system Nidhi Sindhwani Department of ECE, ASET, GGSIPU, Delhi, India Abstract: In MIMO system, there are several number of users

More information

Position Control of Servo Systems using PID Controller Tuning with Soft Computing Optimization Techniques

Position Control of Servo Systems using PID Controller Tuning with Soft Computing Optimization Techniques Position Control of Servo Systems using PID Controller Tuning with Soft Computing Optimization Techniques P. Ravi Kumar M.Tech (control systems) Gudlavalleru engineering college Gudlavalleru,Andhra Pradesh,india

More information

To be published by IGI Global: For release in the Advances in Computational Intelligence and Robotics (ACIR) Book Series

To be published by IGI Global:  For release in the Advances in Computational Intelligence and Robotics (ACIR) Book Series CALL FOR CHAPTER PROPOSALS Proposal Submission Deadline: September 15, 2014 Emerging Technologies in Intelligent Applications for Image and Video Processing A book edited by Dr. V. Santhi (VIT University,

More information

COMPUTATONAL INTELLIGENCE

COMPUTATONAL INTELLIGENCE COMPUTATONAL INTELLIGENCE October 2011 November 2011 Siegfried Nijssen partially based on slides by Uzay Kaymak Leiden Institute of Advanced Computer Science e-mail: snijssen@liacs.nl Katholieke Universiteit

More information

TUNING OF PID CONTROLLERS USING PARTICLE SWARM OPTIMIZATION

TUNING OF PID CONTROLLERS USING PARTICLE SWARM OPTIMIZATION TUNING OF PID CONTROLLERS USING PARTICLE SWARM OPTIMIZATION 1 K.LAKSHMI SOWJANYA, 2 L.RAVI SRINIVAS M.Tech Student, Department of Electrical & Electronics Engineering, Gudlavalleru Engineering College,

More information

Journal Title ISSN 5. MIS QUARTERLY BRIEFINGS IN BIOINFORMATICS

Journal Title ISSN 5. MIS QUARTERLY BRIEFINGS IN BIOINFORMATICS List of Journals with impact factors Date retrieved: 1 August 2009 Journal Title ISSN Impact Factor 5-Year Impact Factor 1. ACM SURVEYS 0360-0300 9.920 14.672 2. VLDB JOURNAL 1066-8888 6.800 9.164 3. IEEE

More information

biologically-inspired computing lecture 20 Informatics luis rocha 2015 biologically Inspired computing INDIANA UNIVERSITY

biologically-inspired computing lecture 20 Informatics luis rocha 2015 biologically Inspired computing INDIANA UNIVERSITY lecture 20 -inspired Sections I485/H400 course outlook Assignments: 35% Students will complete 4/5 assignments based on algorithms presented in class Lab meets in I1 (West) 109 on Lab Wednesdays Lab 0

More information

CHAPTER 7 CONCLUSIONS AND FUTURE SCOPE

CHAPTER 7 CONCLUSIONS AND FUTURE SCOPE CHAPTER 7 CONCLUSIONS AND FUTURE SCOPE 7.1 INTRODUCTION A Shunt Active Filter is controlled current or voltage power electronics converter that facilitates its performance in different modes like current

More information

Particle Swarm Optimization-Based Consensus Achievement of a Decentralized Sensor Network

Particle Swarm Optimization-Based Consensus Achievement of a Decentralized Sensor Network , pp.162-166 http://dx.doi.org/10.14257/astl.2013.42.38 Particle Swarm Optimization-Based Consensus Achievement of a Decentralized Sensor Network Hyunseok Kim 1, Jinsul Kim 2 and Seongju Chang 1*, 1 Department

More information

Grey Wolf Optimization Algorithm for Single Mobile Robot Scheduling

Grey Wolf Optimization Algorithm for Single Mobile Robot Scheduling Grey Wolf Optimization Algorithm for Single Mobile Robot Scheduling Milica Petrović and Zoran Miljković Abstract Development of reliable and efficient material transport system is one of the basic requirements

More information

AI MAGAZINE AMER ASSOC ARTIFICIAL INTELL UNITED STATES English ANNALS OF MATHEMATICS AND ARTIFICIAL

AI MAGAZINE AMER ASSOC ARTIFICIAL INTELL UNITED STATES English ANNALS OF MATHEMATICS AND ARTIFICIAL Title Publisher ISSN Country Language ACM Transactions on Autonomous and Adaptive Systems ASSOC COMPUTING MACHINERY 1556-4665 UNITED STATES English ACM Transactions on Intelligent Systems and Technology

More information

Implementation of FPGA based Decision Making Engine and Genetic Algorithm (GA) for Control of Wireless Parameters

Implementation of FPGA based Decision Making Engine and Genetic Algorithm (GA) for Control of Wireless Parameters Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 11, Number 1 (2018) pp. 15-21 Research India Publications http://www.ripublication.com Implementation of FPGA based Decision Making

More information

Attack-Proof Collaborative Spectrum Sensing in Cognitive Radio Networks

Attack-Proof Collaborative Spectrum Sensing in Cognitive Radio Networks Attack-Proof Collaborative Spectrum Sensing in Cognitive Radio Networks Wenkai Wang, Husheng Li, Yan (Lindsay) Sun, and Zhu Han Department of Electrical, Computer and Biomedical Engineering University

More information

Optimum Power Allocation in Cooperative Networks

Optimum Power Allocation in Cooperative Networks Optimum Power Allocation in Cooperative Networks Jaime Adeane, Miguel R.D. Rodrigues, and Ian J. Wassell Laboratory for Communication Engineering Department of Engineering University of Cambridge 5 JJ

More information

Using ant colony optimisation to improve the efficiency of small meander line RFID antennas

Using ant colony optimisation to improve the efficiency of small meander line RFID antennas Using ant colony optimisation to improve the efficiency of small meander line RFID antennas Author Randall, Marcus, Lewis, Andrew, Mohammadzadeh Galehdar, Amir, Thiel, David Published 2007 Conference Title

More information

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER CHAPTER FOUR TOTAL TRANSFER CAPABILITY R structuring of power system aims at involving the private power producers in the system to supply power. The restructured electric power industry is characterized

More information

Prof. Habiba Drias Laboratoire de Recherche en Intelligence Artificielle LRIA Computer Science Department USTHB Algiers Algeria

Prof. Habiba Drias Laboratoire de Recherche en Intelligence Artificielle LRIA Computer Science Department USTHB Algiers Algeria Swarm Intelligence and Evolutionary Algorithms Habiba Drias Wikipedia.org Prof. Habiba Drias Laboratoire de Recherche en Intelligence Artificielle LRIA Computer Science Department USTHB Algiers Algeria

More information

Obstacle Avoidance in Collective Robotic Search Using Particle Swarm Optimization

Obstacle Avoidance in Collective Robotic Search Using Particle Swarm Optimization Avoidance in Collective Robotic Search Using Particle Swarm Optimization Lisa L. Smith, Student Member, IEEE, Ganesh K. Venayagamoorthy, Senior Member, IEEE, Phillip G. Holloway Real-Time Power and Intelligent

More information

A Comparison of Particle Swarm Optimization and Gradient Descent in Training Wavelet Neural Network to Predict DGPS Corrections

A Comparison of Particle Swarm Optimization and Gradient Descent in Training Wavelet Neural Network to Predict DGPS Corrections Proceedings of the World Congress on Engineering and Computer Science 00 Vol I WCECS 00, October 0-, 00, San Francisco, USA A Comparison of Particle Swarm Optimization and Gradient Descent in Training

More information

xxxv Chapter 2 presents modern computing paradigms of an intelligent system that handles imprecision as well as provides optimized outcomes. The chapt

xxxv Chapter 2 presents modern computing paradigms of an intelligent system that handles imprecision as well as provides optimized outcomes. The chapt xxxiv Preface Meta-Heuristics Optimization (MO) techniques are attractive global optimization methods inspired by the various phenomena arising in nature and man-made problems. They include Fuzzy Logic,

More information

Low-Computational Complexity Detection and BER Bit Error Rate Minimization for Large Wireless MIMO Receiver Using Genetic Algorithm

Low-Computational Complexity Detection and BER Bit Error Rate Minimization for Large Wireless MIMO Receiver Using Genetic Algorithm International Journal of Electronic and Electrical Engineering. ISSN 0974-2174 Volume 7, Number 8 (2014), pp. 779-785 International Research Publication House http://www.irphouse.com Low-Computational

More information

Comparison of Different Performance Index Factor for ABC-PID Controller

Comparison of Different Performance Index Factor for ABC-PID Controller International Journal of Electronic and Electrical Engineering. ISSN 0974-2174, Volume 7, Number 2 (2014), pp. 177-182 International Research Publication House http://www.irphouse.com Comparison of Different

More information

Biological Inspirations for Distributed Robotics. Dr. Daisy Tang

Biological Inspirations for Distributed Robotics. Dr. Daisy Tang Biological Inspirations for Distributed Robotics Dr. Daisy Tang Outline Biological inspirations Understand two types of biological parallels Understand key ideas for distributed robotics obtained from

More information

Distributed Area Coverage Using Robot Flocks

Distributed Area Coverage Using Robot Flocks Distributed Area Coverage Using Robot Flocks Ke Cheng, Prithviraj Dasgupta and Yi Wang Computer Science Department University of Nebraska, Omaha, NE, USA E-mail: {kcheng,ywang,pdasgupta}@mail.unomaha.edu

More information

Applications of Nature-Inspired Intelligence in Finance

Applications of Nature-Inspired Intelligence in Finance Applications of Nature-Inspired Intelligence in Finance Vasilios Vasiliadis 1, and Georgios Dounias 1 1 University of the Aegean, Dept. of Financial Engineering and Management, Management & Decision Engineering

More information

DISTRIBUTION NETWORK RECONFIGURATION FOR LOSS MINIMISATION USING DIFFERENTIAL EVOLUTION ALGORITHM

DISTRIBUTION NETWORK RECONFIGURATION FOR LOSS MINIMISATION USING DIFFERENTIAL EVOLUTION ALGORITHM DISTRIBUTION NETWORK RECONFIGURATION FOR LOSS MINIMISATION USING DIFFERENTIAL EVOLUTION ALGORITHM K. Sureshkumar 1 and P. Vijayakumar 2 1 Department of Electrical and Electronics Engineering, Velammal

More information

IJSRD - International Journal for Scientific Research & Development Vol. 5, Issue 05, 2017 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 5, Issue 05, 2017 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 5, Issue 05, 2017 ISSN (online): 2321-0613 Study: Evolution of Nature Inspired Algorithms in Various Application Domains Harshita

More information

Optimization Localization in Wireless Sensor Network Based on Multi-Objective Firefly Algorithm

Optimization Localization in Wireless Sensor Network Based on Multi-Objective Firefly Algorithm Journal of Network Intelligence c 2016 ISSN 2414-8105(Online) Taiwan Ubiquitous Information Volume 1, Number 4, December 2016 Optimization Localization in Wireless Sensor Network Based on Multi-Objective

More information

An Improved Path Planning Method Based on Artificial Potential Field for a Mobile Robot

An Improved Path Planning Method Based on Artificial Potential Field for a Mobile Robot BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 15, No Sofia 015 Print ISSN: 1311-970; Online ISSN: 1314-4081 DOI: 10.1515/cait-015-0037 An Improved Path Planning Method Based

More information

Artificial Intelligent and meta-heuristic Control Based DFIG model Considered Load Frequency Control for Multi-Area Power System

Artificial Intelligent and meta-heuristic Control Based DFIG model Considered Load Frequency Control for Multi-Area Power System International Research Journal of Engineering and Technology (IRJET) e-issn: 395-56 Volume: 4 Issue: 9 Sep -7 www.irjet.net p-issn: 395-7 Artificial Intelligent and meta-heuristic Control Based DFIG model

More information

Automating a Solution for Optimum PTP Deployment

Automating a Solution for Optimum PTP Deployment Automating a Solution for Optimum PTP Deployment ITSF 2015 David O Connor Bridge Worx in Sync Sync Architect V4: Sync planning & diagnostic tool. Evaluates physical layer synchronisation distribution by

More information

Available online at ScienceDirect. Procedia Computer Science 24 (2013 ) 66 75

Available online at   ScienceDirect. Procedia Computer Science 24 (2013 ) 66 75 Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 24 (2013 ) 66 75 17th Asia Pacific Symposium on Intelligent and Evolutionary Systems, IES2013 Dynamic Multiobjective Optimization

More information

KOVAN Dept. of Computer Eng. Middle East Technical University Ankara, Turkey

KOVAN Dept. of Computer Eng. Middle East Technical University Ankara, Turkey Swarm Robotics: From sources of inspiration to domains of application Erol Sahin KOVAN Dept. of Computer Eng. Middle East Technical University Ankara, Turkey http://www.kovan.ceng.metu.edu.tr What is Swarm

More information

BUILDING A SWARM OF ROBOTIC BEES

BUILDING A SWARM OF ROBOTIC BEES World Automation Congress 2010 TSI Press. BUILDING A SWARM OF ROBOTIC BEES ALEKSANDAR JEVTIC (1), PEYMON GAZI (2), DIEGO ANDINA (1), Mo JAMSHlDI (2) (1) Group for Automation in Signal and Communications,

More information

Computational Intelligence for Network Structure Analytics

Computational Intelligence for Network Structure Analytics Computational Intelligence for Network Structure Analytics Maoguo Gong Qing Cai Lijia Ma Shanfeng Wang Yu Lei Computational Intelligence for Network Structure Analytics 123 Maoguo Gong Xidian University

More information

Doctoral Dissertation Shibaura Institute of Technology. Distribution Network Loss Minimization via Artificial Immune Bee Colony

Doctoral Dissertation Shibaura Institute of Technology. Distribution Network Loss Minimization via Artificial Immune Bee Colony Doctoral Dissertation Shibaura Institute of Technology Distribution Network Loss Minimization via Artificial Immune Bee Colony 2014/SEPTEMBER MOHD NABIL BIN MUHTAZARUDDIN DISTRIBUTION NETWORK LOSS MINIMIZATION

More information

IMAGE TYPE WATER METER CHARACTER RECOGNITION BASED ON EMBEDDED DSP

IMAGE TYPE WATER METER CHARACTER RECOGNITION BASED ON EMBEDDED DSP IMAGE TYPE WATER METER CHARACTER RECOGNITION BASED ON EMBEDDED DSP LIU Ying 1,HAN Yan-bin 2 and ZHANG Yu-lin 3 1 School of Information Science and Engineering, University of Jinan, Jinan 250022, PR China

More information

Enhancing Embodied Evolution with Punctuated Anytime Learning

Enhancing Embodied Evolution with Punctuated Anytime Learning Enhancing Embodied Evolution with Punctuated Anytime Learning Gary B. Parker, Member IEEE, and Gregory E. Fedynyshyn Abstract This paper discusses a new implementation of embodied evolution that uses the

More information

Multi robot Team Formation for Distributed Area Coverage. Raj Dasgupta Computer Science Department University of Nebraska, Omaha

Multi robot Team Formation for Distributed Area Coverage. Raj Dasgupta Computer Science Department University of Nebraska, Omaha Multi robot Team Formation for Distributed Area Coverage Raj Dasgupta Computer Science Department University of Nebraska, Omaha C MANTIC Lab Collaborative Multi AgeNt/Multi robot Technologies for Intelligent

More information

Fuzzy-Heuristic Robot Navigation in a Simulated Environment

Fuzzy-Heuristic Robot Navigation in a Simulated Environment Fuzzy-Heuristic Robot Navigation in a Simulated Environment S. K. Deshpande, M. Blumenstein and B. Verma School of Information Technology, Griffith University-Gold Coast, PMB 50, GCMC, Bundall, QLD 9726,

More information

This list supersedes the one published in the November 2002 issue of CR.

This list supersedes the one published in the November 2002 issue of CR. PERIODICALS RECEIVED This is the current list of periodicals received for review in Reviews. International standard serial numbers (ISSNs) are provided to facilitate obtaining copies of articles or subscriptions.

More information

A Divide-and-Conquer Approach to Evolvable Hardware

A Divide-and-Conquer Approach to Evolvable Hardware A Divide-and-Conquer Approach to Evolvable Hardware Jim Torresen Department of Informatics, University of Oslo, PO Box 1080 Blindern N-0316 Oslo, Norway E-mail: jimtoer@idi.ntnu.no Abstract. Evolvable

More information

Supervisory Control for Cost-Effective Redistribution of Robotic Swarms

Supervisory Control for Cost-Effective Redistribution of Robotic Swarms Supervisory Control for Cost-Effective Redistribution of Robotic Swarms Ruikun Luo Department of Mechaincal Engineering College of Engineering Carnegie Mellon University Pittsburgh, Pennsylvania 11 Email:

More information

Voltage Controller for Radial Distribution Networks with Distributed Generation

Voltage Controller for Radial Distribution Networks with Distributed Generation International Journal of Scientific and Research Publications, Volume 4, Issue 3, March 2014 1 Voltage Controller for Radial Distribution Networks with Distributed Generation Christopher Kigen *, Dr. Nicodemus

More information

Speed control of switched reluctance motor using genetic algorithm and ant colony based on optimizing PID controller

Speed control of switched reluctance motor using genetic algorithm and ant colony based on optimizing PID controller Speed control of switched reluctance motor using genetic algorithm and ant colony based on optimizing PID controller HASSAN EL-SAYED AHMED IBRAHIM, MOHAMED SAID SAYED AHMED, KHALED MOHAMED AWAD Electrical

More information

Software Project Management 4th Edition. Chapter 3. Project evaluation & estimation

Software Project Management 4th Edition. Chapter 3. Project evaluation & estimation Software Project Management 4th Edition Chapter 3 Project evaluation & estimation 1 Introduction Evolutionary Process model Spiral model Evolutionary Process Models Evolutionary Models are characterized

More information

Implementation and Comparison the Dynamic Pathfinding Algorithm and Two Modified A* Pathfinding Algorithms in a Car Racing Game

Implementation and Comparison the Dynamic Pathfinding Algorithm and Two Modified A* Pathfinding Algorithms in a Car Racing Game Implementation and Comparison the Dynamic Pathfinding Algorithm and Two Modified A* Pathfinding Algorithms in a Car Racing Game Jung-Ying Wang and Yong-Bin Lin Abstract For a car racing game, the most

More information

In vivo, in silico, in machina: ants and robots balance memory and communication to collectively exploit information

In vivo, in silico, in machina: ants and robots balance memory and communication to collectively exploit information In vivo, in silico, in machina: ants and robots balance memory and communication to collectively exploit information Melanie E. Moses, Kenneth Letendre, Joshua P. Hecker, Tatiana P. Flanagan Department

More information

Decentralized Approaches for Robot Fleet Control

Decentralized Approaches for Robot Fleet Control Workshop on AERIAL ROBOTICS - Onera Toulouse 2-3 October 2014 Decentralized Approaches for Robot Fleet Control INSA Lyon CITI-Inria Lab. - Dynamid team Olivier.Simonin@insa-lyon.fr Outline I. Decentralized

More information

Swarm robotics in wireless distributed protocol design for coordinating robots involved in cooperative tasks

Swarm robotics in wireless distributed protocol design for coordinating robots involved in cooperative tasks Swarm robotics in wireless distributed protocol design for coordinating robots involved in cooperative tasks Floriano De Rango 1, Nunzia Palmieri 1, Xin-She Yang 2, Salvatore Marano 1 arxiv:1804.08096v1

More information

Department of Mechanical Engineering, Khon Kaen University, THAILAND, 40002

Department of Mechanical Engineering, Khon Kaen University, THAILAND, 40002 366 KKU Res. J. 2012; 17(3) KKU Res. J. 2012; 17(3):366-374 http : //resjournal.kku.ac.th Multi Objective Evolutionary Algorithms for Pipe Network Design and Rehabilitation: Comparative Study on Large

More information

MALAYSIA. Hang Tuah Jaya, Melaka, MALAYSIA. Hang Tuah Jaya, Melaka, MALAYSIA. Tunggal, Hang Tuah Jaya, Melaka, MALAYSIA

MALAYSIA. Hang Tuah Jaya, Melaka, MALAYSIA. Hang Tuah Jaya, Melaka, MALAYSIA. Tunggal, Hang Tuah Jaya, Melaka, MALAYSIA Advanced Materials Research Vol. 903 (2014) pp 321-326 Online: 2014-02-27 (2014) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amr.903.321 Modeling and Simulation of Swarm Intelligence

More information

Comparison of bio-inspired algorithms applied to the coordination of mobile robots considering the energy consumption

Comparison of bio-inspired algorithms applied to the coordination of mobile robots considering the energy consumption Noname manuscript No. (will be inserted by the editor) Comparison of bio-inspired algorithms applied to the coordination of mobile robots considering the energy consumption Nunzia Palmieri 1 Xin-She Yang

More information

Co-evolution for Communication: An EHW Approach

Co-evolution for Communication: An EHW Approach Journal of Universal Computer Science, vol. 13, no. 9 (2007), 1300-1308 submitted: 12/6/06, accepted: 24/10/06, appeared: 28/9/07 J.UCS Co-evolution for Communication: An EHW Approach Yasser Baleghi Damavandi,

More information

Design of Adaptive Collective Foraging in Swarm Robotic Systems

Design of Adaptive Collective Foraging in Swarm Robotic Systems Western Michigan University ScholarWorks at WMU Dissertations Graduate College 5-2010 Design of Adaptive Collective Foraging in Swarm Robotic Systems Hanyi Dai Western Michigan University Follow this and

More information

Design of PID Controller for Higher Order Discrete Systems Based on Order Reduction Employing ABC Algorithm

Design of PID Controller for Higher Order Discrete Systems Based on Order Reduction Employing ABC Algorithm Design of PID Controller for Higher Order Discrete Systems Based on Order Reduction Employing ABC Algorithm G.Vasu 1* G.Sandeep 2 1. Assistant professor, Dept. of Electrical Engg., S.V.P Engg College,

More information

Hierarchical Case-Based Reasoning Behavior Control for Humanoid Robot

Hierarchical Case-Based Reasoning Behavior Control for Humanoid Robot Annals of University of Craiova, Math. Comp. Sci. Ser. Volume 36(2), 2009, Pages 131 140 ISSN: 1223-6934 Hierarchical Case-Based Reasoning Behavior Control for Humanoid Robot Bassant Mohamed El-Bagoury,

More information

Ant colony optimization algorithm based PID controller for LFC of single area power system with non-linearity and boiler dynamics

Ant colony optimization algorithm based PID controller for LFC of single area power system with non-linearity and boiler dynamics ISSN 1 746-7233, England, UK World Journal of Modelling and Simulation Vol. 12 (2016) No. 1, pp. 3-14 Ant colony optimization algorithm based PID controller for LFC of single area power system with non-linearity

More information

INTELLIGENT DECISION AND CONTROL INTELLIGENT SYSTEMS

INTELLIGENT DECISION AND CONTROL INTELLIGENT SYSTEMS INTELLIGENT DECISION AND CONTROL INTELLIGENT SYSTEMS João Miguel da Costa Sousa Universidade de Lisboa, Instituto Superior Técnico CenterofIntelligentSystems, IDMEC, LAETA, Portugal jmsousa@tecnico.ulisboa.pt

More information

A NEW APPROACH TO GLOBAL OPTIMIZATION MOTIVATED BY PARLIAMENTARY POLITICAL COMPETITIONS. Ali Borji. Mandana Hamidi

A NEW APPROACH TO GLOBAL OPTIMIZATION MOTIVATED BY PARLIAMENTARY POLITICAL COMPETITIONS. Ali Borji. Mandana Hamidi International Journal of Innovative Computing, Information and Control ICIC International c 2008 ISSN 1349-4198 Volume x, Number 0x, x 2008 pp. 0 0 A NEW APPROACH TO GLOBAL OPTIMIZATION MOTIVATED BY PARLIAMENTARY

More information

The Application of Multi-Level Genetic Algorithms in Assembly Planning

The Application of Multi-Level Genetic Algorithms in Assembly Planning Volume 17, Number 4 - August 2001 to October 2001 The Application of Multi-Level Genetic Algorithms in Assembly Planning By Dr. Shana Shiang-Fong Smith (Shiang-Fong Chen) and Mr. Yong-Jin Liu KEYWORD SEARCH

More information

5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015)

5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Application of Particle Swarm Optimization Algorithm in Test Points Selection of Radar Servo System Han

More information