A Parallel Tabu Search Algorithm For The 0-1 Multidimensional Knapsack Problem

Size: px
Start display at page:

Download "A Parallel Tabu Search Algorithm For The 0-1 Multidimensional Knapsack Problem"

Transcription

1 A Parallel Tabu Search Algorithm For The 0-1 Multidimensional Knapsack Problem Smail Niar, Arnaud Freville Universitéde Valenciennes, LIMAV Le Mont Houy BP Valenciennes Cedex-France niar, Abstract The 0 1 MultidimensionalKnapsack Problem (0 1MKP) is a NP-complete problem. Its resolution for large scale instances requires a prohibitive processing time. In this paper we propose a new parallel meta heuristic algorithm based on the Tabu Search (TS) for the resolution of the 0-1 MKP. We show that, in addition to reducing execution time, parallel processing can perform automatically and dynamically the settings of some TS parameters. This last point is realized by analyzing the information given by cooperative parallel search processes, and by modifying the search processes during the execution. This approach introduces a new level where balancing between intensification and diversification can be realized. 1 Introduction Since many years, parallel computers have been used to solve hard problems in different areas. In the field of combinatorial optimization,parallel computers offer the advantage of reducing the execution time and give the opportunity to solve new problems which we could not attack by sequential computers which are limited in execution speed and memory capacity. The 0-1 MKP is a combinatorial optimization problem which is often used for modeling different applications like capital budgeting or resource allocation [8]. It can be defined as follows: nx MAX c j x j subject to nx j=1 j=1 a ij x j b i ; i= 1::m: x j 2f0;1g; j= 1::n where a ij, b i and c j are all positive real valued constants. Solving 0-1 MKP of large dimensions (n> 500 and m>25) by an exact approach (like Branch and Bound or Dynamic Programming) requires a great amount of time. Here the proposed solution consists in using the Tabu Search (TS) meta-heuristic as a resolution algorithm and performing a parallel exploration of the solution domain. The aim of our work is to show that parallel processing can : - reduce the execution time of the TS algorithm - allow the resolution of large size 0-1 MKP - improve the quality of the final solution - allow the implementation of new TS strategies. - Tune automatically and dynamically some parameters of the TS algorithm. 2 Parallelism and Tabu search Different sources of parallelism exist in TS algorithm. Four of these sources are often pointed out. - Parallelism in cost function evaluation. - Parallelism in neighborhood examination and evaluation - Parallelism in problem decomposition - Parallelism in solution domain exploration by maintaining different independent or dependent search paths. The first two sources of parallelism represent low level approaches to parallelism. In this case, phases of the algorithm which are time consuming are delegated to a specialized parallel computer[2]. The third source of parallelism in TS has been used by Taillard [10] to solve the vehicle routing problem. In the last type of parallelism, different independent parallel processes, called parallel search threads, are created. Each search thread consists in executing a TS algorithm from an initial solution and using a set of parameters. This set of parameters determines the behavior of the TS processes and specifies for each processor a search Strategy to be executed. For example, a strategy is represented by : the length of the Tabu list, the number of neighbor solutions evaluated

2 at each move, the move realized at each iteration,...etc. The present paper is concerned with this last type of parallelism applied to 0-1 MKP of large size. Regarding to other types, the parallelization of TS by maintaining parallel threads has the advantage of minimizing the communication overhead between threads by implementing coarse grain parallelism. This kind of parallelism is well suited to MIMD parallel computer with distributed memory[11]. The parallel search threads have the possibility to exchange informations. In this case, parallel search threads are called Synchronous threads if communications between threads are realized at predetermined moments (rendez vous). Otherwise, if these information exchanges are realized at different moments, determined by the internal state of the thread, the communication scheme is called Asynchronous. Although it is very easy to build search algorithm which consists in several independent search threads, this approach has not a great interest and is equivalent to execute several times the same sequential TS algorithm with different starting solutions and/or different search parameters. Despite of its poor performances this approach has been greatly used with more or less good results. When independent search threads are executed, it is easy to make the following remarks: 1- After a certain number of TS iterations, it is interesting to stop a search thread when no improvement of the best solution is encountered for a great number of iterations. This may be due either because the search is done in a "non interesting" region or because the search parameter values are not adapted to the problem instance under test. The stopped process may be reinitialized with a new "interesting" solution and/or a new set of parameters. 2- It is useful to stop a search thread when the region, where the search is done, have been explored (or is under exploration) by another thread. The stopped process will be reoriented to a new not yet explored region. 3 The Search Algorithm In this paragraph we will present the sequential part of the TS algorithm which is executed by a processor. The figure 1 presents the general statement of this algorithm. 3.1 The Local Search Phase The basis of the TS algorithm are those proposed by Glover [5]. Each slave processor k starts with an initial solution X init and uses a strategy St k. During each iteration of the process a neighborhood N(X) of the current solution X is examined in order to select the best solution X as a new solution. The selected solution X must not be "Tabu". A Tabu status of a solution avoid cycling when non monotonic exploration of the domain is realized, i.e when solutions of less quality PROCEDURE Tabu search (X init, Nbdiv, Nb int, Nb local, Nb Drop, Lt length, BestSol array) /* X is the actual solution */ 1- X=X init; Lt Lt length=fg; 2- For i=0 to Nb div do 3- For j=0 to Nb int do 4- X local=x; /* move */ 5- go from X to X by a sequence of Nb Drop/Add; 6- If F(X )> F(X )thenx =X ;X local=x ; Else If F(X )>F(X local) ThenX local=x ; 7- If X is apart of the B Best solutions Then insert X in the BestSol array; 8- X = X ; update History; 9- Lt Lt length=lt Lt length+ X;/* X is Tabu*/ 10- If no improvement of F(X ) during Nb-local iterations go to 10, Else go to 4 ; 11- Intensification(X local, X ); 12- Diversification(History, X); Figure 1. The general form of the TS algorithm are accepted. Nevertheless, this Tabu state "Barrier" may be left for a solution X, if the corresponding objective function value F(X ) is better than the best solution cost F(X ) found so far. This mechanism is called the aspiration criteria. Once the new solution X is selected, a transformation (a move) is applied in order to transform X in X. Like in [3] a move consists of 2 steps: 1)Drop: This step selects Nb drop components fixed at 1 in the actual solution X and resets these components to 0. The choice of the components to drop is made as following: i =ArgMinf( P N j=1 a ij x j ), b i ji= 1,2... mg i is the index of the most saturated constraint j = Arg maxfa i j =c j jx j = 1, j=1,..., ng and j 62 Lt Lt length ; 2)Add: Here one or several components fixed at 0 are chosen and set to 1. The selected component must not be Tabu except if the aspiration criteria is realized. Adding object to the knapsack is realized until no object can be added. The intensification and diversification phases complete the local search. The role of the intensification is to drive the search towards interesting region (promising region) by taking into account characteristics found in high quality solutions in the selection of future solutions to visit. The diversification phase, on the other hand, forces the search to explore regions containing unvisited solutions.

3 3.2 The Intensification Phase In our project, two intensification procedures have been used. Intensification by swapping components The first intensification procedure tested in our project consists in taking the best solution found during the last local search loop X, selecting a component local X local [i] having the value 1 and performing exchange with another component X local [j] which has the value 0 with C[j]>C[i]. This exchange is realized for each couple (i, j) satisfyingthe previous conditions. Intensification by strategic oscillation. Strategic oscillation, consists in crossing the feasible domain boundary by accepting infeasible solutions during a fixed number of iterations. Then the infeasible solution is projected onto the feasible domain to generate a new feasible solution. This projection is performed by excluding from the knapsack the less interesting objects (i.e those with large Pi a ij/c j ratio). This method has been successfully applied to the 0-1 MKP [6] [7]. Yet the main drawback is its extra computing time due to the exploration of a great number of infeasible solutions. In order to reduce this execution time, we have limited the number of explored infeasible solutions by limiting the depth of the search path in the infeasible domain[9]. 3.3 The Diversification Phase The diversification step uses a memory containing informations relative to visited solutions since the beginning of the search. This memory, called long term memory, isused in order to favoring the exploration of these new regions. The diversification phase starts by generating a new starting solution X diver. Rather than taking this new solution randomly, X diver is generated by taking into account the most frequently components set to 0 or 1. We use an array called History. The value of History[i] represents the number of iterations where the component i of the current solution is set to 1. By this way, if History[i] has a value greater (rep. less) than a threshold, X diver [i] is set to 0 (rep. to 1), and the component i is set Tabu. By this manner, search is forced to go into region which was neglected in the previous searches. The search is limited to this new region during a fixed number of iterations before continuing in normal conditions. 4 The parallel TS algorithm for the 0 1MKP 4.1 Dynamic TS parameter setting Our TS approach has the advantage to be a flexible method and easily adaptable for solving different problems in combinatorial optimization. But to be efficient, it requires to tune parameter values controlling the search. In the previous section, the term Strategy has been used to name the set of parameters which must be fixed before starting the execution of the TS. For instance, the Tabu list length value (tl length) must be large in order to avoid cycling and loosing time in reevaluating several times the same solution. Conversely, if tl length is very large no movement will be allowed after an initial phase. Indeed, the process does not allow to accede to solutions which have never been encountered and may reduce the number of accessible neighbor solutions. The tl length has also an influence on the progress of the TS. In fact, if this value is small, the last best visited solutions becomes quickly accessible, allowing by this way, to come back to regions containing solutions of good quality. In this way, a small value of tl length allows the search to realize an intensification in a region containing good solutions. In counterpart, when tl length is large, the search will be forced to accept less good solutions. This will give an opportunityto the search to go out from regions containing a great number of good solutions and will diversify the search. In our opinion, the proposed methods for controllingdynamically the tl length involve a great time and memory space overheads. Among these methods, we quote the Reverse Elimination Methods (REM) [3]. This method is based on the building of list containing all the moves executed from the initial configuration (the running list). In spite of its good performances for a set of problems, this method has the drawback of having a time overhead proportional to the number of executed iterations. Battiti and Tecchioli [1] propose another method called Reactive Tabu search. it consists in using aside the classic Tabu list another data structure (hashing table) which contains objective function values of all visited solutions. The using of hashing function for MKP of great size will produce a great number of collisions and this will lead to an important overhead. Another parameter in the strategy permit also to balance between intensification and diversification. Experimental tests [9] have shown that, when the number of consecutive drops (nb drop) done in a move is small (less than 3), the objective function changes less rapidly and the visited solutions are close ones another. When the value of nb drop becomes high, the variations in the objective function are more important and the visited solution are distant ones another. Here the proposed solution to the problem of setting these two parameters, consists in using parallel computer architecture with multiple independent processors. In this architecture, one processor has the status of Master. The process executed by the master (the master process) consists in controlling the search threads (Slave processes) by modifying dynamically the parameters which governs the search thread.

4 Procedure Master Process(P, Nb search it) Read and send to slaves problem data For i=1 to Nb search it do Call SGP(P, Data struc, ) and ISP(P, Data struc) Send Initial solutions and strategies to slaves Receive from each slave its B best solutions Figure 2. The master process 4.2 The master process The master process executes an iterative program. At each (search) iteration, P slave processes are launched. To start a search, the master process must give to each slave a starting solution (an initial solution) and a search strategy (synchronous centralized communication scheme). From a functional point of view, the master process is composed of three procedures and uses one data structure. Those procedures are : the main procedure, the strategy generation procedure (SGP) and the initial solution generation procedure (ISP). The data structure used by the master process is an array of P entries. The entry i corresponds to informations given to or by the slave processor i and contains four items: - The search strategy (three values) (St i ) - The initial solution used by the slave (S i ) - The B best solutions found by the slave i (best i ) - The score of the slave i (score i ) The figure 2 presents the master process. It is noteworthy that slaves processors must terminate their search (approximately) at the same time. Indeed, when the elapsed time between two ends of search is important, this will penalize the shortest search. In order to get the new starting solution and the new search strategy, each slave must wait until all other slaves terminate their search thread in the previous search iteration. The parameter Nb drop has a great influence on the execution time. Indeed, more this parameter is high more long will be the search time. By consequent, one way to balance the execution times of the different slave processors, is to give a value to Nb it which is proportional to Nb drop conversely. The initial solution generation procedure (ISP) The purpose of this procedure is to provide to slaves P initial solutions for the next search iteration. As a first step, for each entry i in the data structure, the next initial solution (S i ) will be the best solution found by the processor i (S i ). Nevertheless, this solution will be substituted by another solution if one of the following conditions happens: 1)Its cost C(S i )islessthanafraction() of the best cost found by all processors since the beginning of the search (c(s )). In this case, S will assigned to S i. Consequently solutions having smaller cost are eliminated from the initial solution pool and replaced by S [11]. 2)An initial solution S i has not been modified during a fixed number of iterations, it will be substituted by a new randomly generated solution. By changing dynamically (in the main procedure) the value of the parameter, it is possible to force or to forbid threads to realize search in the same region. This may be considered as a form of (macro) intensification. A small value of coupled with introduction of new random solutions will give to threads the ability to explore different regions at each iteration. This simulate a (macro) diversification of the search. The Strategy generation procedure (SGP) The role of this procedure is to produce P strategies at each search iteration. In the actual version of the program, a strategy is characterized by three parameters: - The Tabu list size (Lt length) - The maximum number of consecutive drops (Nb drop) - The number of iterations in local search before starting an intensification (Nb local). As mentioned in the previous section, a score is affected to each strategy to reflect its performance. This performance is measured by the capacity of the strategy to find solutions of high quality. Initially, the parameter score i, is set to a predetermined value (four in the actual version). At each search iteration, score i is incremented if the final solution cost returned by the slave i (C i ) is higher than the initial solution cost (C i ). Otherwise, (i.e if C i <C i) score i is decremented. Once score i reaches the value 0, st i is removed and new values are affected to each parameter for st i. These new values may be chosen randomly or in a clever manner by using the B best solutions returned by the slave i. If the B best solutions found by a slave are in close areas, we conclude that this slave has not visiting a lot of areas. In this case, it is interesting to increment lt size i and nb drop i and to reduce the nb it i parameter. The hamming distance is used to compute the distance between solutions. In the opposite, if the B best solutions are very far ones another, the master processor (by executing the SGP) will force slave processors to do intensification around one (the best solution found so far) or several solutions. This operation is realized by reducing the values of the lt size i and nb drop i parameters and incrementing the value of nb it i parameter.

5 5 Computation results The developed program, written in C language, has been tested on 2 sets of 0 1MKP. The parallel architecture used during tests is the Farm of 16 Alpha processors. These processors have a pick performance of 500 MIPS and are connected by a high speed optic fiber crossbar (16X16 links of 200Mb/sec each). Communication between processors are realized by using the PVM library. The first set of problems is proposed in Fréville and Plateau [4]. This first benchmark is composed of 57 problems. The number of variables varies from 6 up to 105 and the number of constraints from 2 up to 30. The optimal solution is reached for all these problems in less execution time than to those in [3]. The second set of problems has been proposed in Glover and Kochenberger [6]. This set consists in MKP of size ranging from 3*10 up to 25*500. Numerical results are reported in Table 1 (see [9] for more details). Prob nbr m*n Max.Exec.Time Dev. in % 1to4 3* to8 5* to14 10* to 17 15* to22 25* * * Table 1 : Computational results for Glover-Kochenberger Problems The execution times for these two benchmarks are very short comparing to those given in [7] which do not include the time needed to find the suitable parameter values for the TS algorithm. In order to show the benefits of our approach, we present in Table 2 the cost of the best solution found by four approaches of the TS for a fixed execution time : -SEQ : One sequential TS. The strategy parameters and the initial solution are chosen randomly. -ITS : P parallel independent TS threads with neither communication nor strategy parameter modification. - CTS1 : P parallel cooperative TS threads with communication but with no modifying strategy parameters. -CTS2 : P parallel cooperative TS threads with communication and dynamically strategy parameter settings. Prob SEQ ITS CTS1 CTS2 Exec Time MK MK MK MK MK Conclusion and future extension In this paper we present a parallel implementation of TS for the 0 1 MKP allowing both reducing execution time and setting dynamically strategy parameters. In fact, we have shown that parallel cooperative TS threads allow better search orientation in the different slave processors by doing either an intensification in a promising zone or diversification in order to explore a neglected zone. We have also shown that parallel cooperative search may be used in order to unload the user from the task of finding the efficient TS parameters for each problem instance. Moreover, modifying TS parameters dynamically create another level of balancing between intensification and diversification phases. In future work, we project to replace the centralized synchronous communication scheme (master slave model), by a decentralized asynchronous communication scheme. References [1] Battiti.R and G.Tecchiolli. The reactive tabu search. ORSA Jour. on Comp., 6(2), [2] Chakrapani.j and J.Skorin-Kapov. Massively parallel tabu search for the quadratic assignment problem. Annals of Op. res., (41), [3] Demmeyer.F and S.Voss. Dynamic tabu list managementusing the reverse elimination method. Annals of OR, (41):31 46, [4] Fréville.A and G.Plateau. Hard 0-1 test problems for size reduction methods. Investigacion Operativa, (1): , [5] Glover.F. Tabu search part 1. ORSA Journal on Computing, 1(3), [6] Glover.F and G. Kochenberger. Critical eventtabu search for multidimensional knapsack problems. In Osman and Kelly, editors, Meta-Heuristics : Theory and applications.kluwer Academic Pub, [7] Hanafi.S and A.Freville. An efficient tabu search approach for the 0-1 mkp. To appear in European Journal of OR, [8] Martello.S and P.Toth. Knapsack Problems:Algorithms and computer implementation. Wiley & Sons, [9] Niar.S and A.Freville. Parallel resolution of the 0-1 MKP. Technical Report , LIMAV University of Valenciennes, [10] Taillard.E. Parallel iterative search methodsfor vehicle routing problems. Networks, (23): , [11] Toulouse.M, T.G.Crainic, and M.Gendreau. Communication issues in designing cooperative multithread parallel searches. In Osman and Kelly, editors, Meta-Heuristics : Theory and applications. Kluwer Academic Pub, Table 2 : Comparison of the four approaches

Parallel Computing in Combinatorial Optimization

Parallel Computing in Combinatorial Optimization Parallel Computing in Combinatorial Optimization Bernard Gendron Université de Montréal gendron@iro.umontreal.ca Course Outline Objective: provide an overview of the current research on the design of parallel

More information

GRASP. Greedy Randomized Adaptive. Search Procedure

GRASP. Greedy Randomized Adaptive. Search Procedure GRASP Greedy Randomized Adaptive Search Procedure Type of problems Combinatorial optimization problem: Finite ensemble E = {1,2,... n } Subset of feasible solutions F 2 Objective function f : 2 Minimisation

More information

Overview of Tabu Search

Overview of Tabu Search Overview of Tabu Search The word tabu (or taboo) comes from Tongan, a language of Polynesia, where it was used by the aborigines of Tonga island to indicate things that cannot be touched because they are

More information

arxiv: v1 [cs.dm] 6 May 2009

arxiv: v1 [cs.dm] 6 May 2009 Solving the 0 1 Multidimensional Knapsack Problem with Resolution Search Sylvain Boussier a, Michel Vasquez a, Yannick Vimont a, Saïd Hanafi b and Philippe Michelon c arxiv:0905.0848v1 [cs.dm] 6 May 2009

More information

A "Logic-Constrained" Knapsack Formulation and a Tabu Algorithm for the Daily Photograph Scheduling of an Earth Observation Satellite

A Logic-Constrained Knapsack Formulation and a Tabu Algorithm for the Daily Photograph Scheduling of an Earth Observation Satellite A "Logic-Constrained" Knapsack Formulation and a Tabu Algorithm for the Daily Photograph Scheduling of an Earth Observation Satellite Michel Vasquez and Jin-Kao Hao * (Submitted to Journal of Computational

More information

6. Tabu Search. 6.3 Minimum k-tree Problem. Fall 2010 Instructor: Dr. Masoud Yaghini

6. Tabu Search. 6.3 Minimum k-tree Problem. Fall 2010 Instructor: Dr. Masoud Yaghini 6. Tabu Search 6.3 Minimum k-tree Problem Fall 2010 Instructor: Dr. Masoud Yaghini Outline Definition Initial Solution Neighborhood Structure and Move Mechanism Tabu Structure Illustrative Tabu Structure

More information

Optimization Techniques for Design Space Exploration

Optimization Techniques for Design Space Exploration 0-0-7 Optimization Techniques for Design Space Exploration Zebo Peng Embedded Systems Laboratory (ESLAB) Linköping University Outline Optimization problems in ERT system design Heuristic techniques Simulated

More information

Tabu search: global intensification using dynamic programming

Tabu search: global intensification using dynamic programming Control and Cybernetics vol. 35 (2006) No. 3 Tabu search: global intensification using dynamic programming by Christophe Wilbaut 1, Saïd Hanafi 1, Arnaud Fréville 1 and Stefan Balev 2 1 LAMIH-ROI, Université

More information

Tabu Search for Constraint Solving and Its Applications. Jin-Kao Hao LERIA University of Angers 2 Boulevard Lavoisier Angers Cedex 01 - France

Tabu Search for Constraint Solving and Its Applications. Jin-Kao Hao LERIA University of Angers 2 Boulevard Lavoisier Angers Cedex 01 - France Tabu Search for Constraint Solving and Its Applications Jin-Kao Hao LERIA University of Angers 2 Boulevard Lavoisier 49045 Angers Cedex 01 - France 1. Introduction The Constraint Satisfaction Problem (CSP)

More information

Adaptive Large Neighborhood Search

Adaptive Large Neighborhood Search Adaptive Large Neighborhood Search Heuristic algorithms Giovanni Righini University of Milan Department of Computer Science (Crema) VLSN and LNS By Very Large Scale Neighborhood (VLSN) local search, we

More information

6. Tabu Search 6.1 Basic Concepts. Fall 2010 Instructor: Dr. Masoud Yaghini

6. Tabu Search 6.1 Basic Concepts. Fall 2010 Instructor: Dr. Masoud Yaghini 6. Tabu Search 6.1 Basic Concepts Fall 2010 Instructor: Dr. Masoud Yaghini Outline Tabu Search: Part 1 Introduction Illustrative Problems Search Space Neighborhood Structure Tabus Aspiration Criteria Termination

More information

Evolutionary Computation Algorithms for Cryptanalysis: A Study

Evolutionary Computation Algorithms for Cryptanalysis: A Study Evolutionary Computation Algorithms for Cryptanalysis: A Study Poonam Garg Information Technology and Management Dept. Institute of Management Technology Ghaziabad, India pgarg@imt.edu Abstract The cryptanalysis

More information

Tabu Search - Examples

Tabu Search - Examples - Examples Petru Eles Department of Computer and Information Science (IDA) Linköpings universitet http://www.ida.liu.se/~petel/ 1 Examples Hardware/Software Partitioning Travelling Salesman 2 TS Examples:

More information

A Tabu Search solution algorithm

A Tabu Search solution algorithm Chapter 5 A Tabu Search solution algorithm The TS examines a trajectory sequence of solutions and moves to the best neighbor of the current solution. To avoid cycling, solutions that were recently examined

More information

Simple mechanisms for escaping from local optima:

Simple mechanisms for escaping from local optima: The methods we have seen so far are iterative improvement methods, that is, they get stuck in local optima. Simple mechanisms for escaping from local optima: I Restart: re-initialise search whenever a

More information

A Comparative Study of Tabu Search and Simulated Annealing for Traveling Salesman Problem. Project Report Applied Optimization MSCI 703

A Comparative Study of Tabu Search and Simulated Annealing for Traveling Salesman Problem. Project Report Applied Optimization MSCI 703 A Comparative Study of Tabu Search and Simulated Annealing for Traveling Salesman Problem Project Report Applied Optimization MSCI 703 Submitted by Sachin Jayaswal Student ID: 20186226 Department of Management

More information

The Augmented Regret Heuristic for Staff Scheduling

The Augmented Regret Heuristic for Staff Scheduling The Augmented Regret Heuristic for Staff Scheduling Philip Kilby CSIRO Mathematical and Information Sciences, GPO Box 664, Canberra ACT 2601, Australia August 2001 Abstract The regret heuristic is a fairly

More information

A Tabu Search Heuristic for the Generalized Traveling Salesman Problem

A Tabu Search Heuristic for the Generalized Traveling Salesman Problem A Tabu Search Heuristic for the Generalized Traveling Salesman Problem Jacques Renaud 1,2 Frédéric Semet 3,4 1. Université Laval 2. Centre de Recherche sur les Technologies de l Organisation Réseau 3.

More information

Lecture 06 Tabu Search

Lecture 06 Tabu Search Lecture 06 Tabu Search s.l. dr. ing. Ciprian-Bogdan Chirila chirila@cs.upt.ro http://www.cs.upt.ro/~chirila Heuristic Methods Outline Introduction The TS framework Example Notation and problem description

More information

Tabu search and genetic algorithms: a comparative study between pure and hybrid agents in an A-teams approach

Tabu search and genetic algorithms: a comparative study between pure and hybrid agents in an A-teams approach Tabu search and genetic algorithms: a comparative study between pure and hybrid agents in an A-teams approach Carlos A. S. Passos (CenPRA) carlos.passos@cenpra.gov.br Daniel M. Aquino (UNICAMP, PIBIC/CNPq)

More information

Regensburger DISKUSSIONSBEITRÄGE zur Wirtschaftswissenschaft

Regensburger DISKUSSIONSBEITRÄGE zur Wirtschaftswissenschaft Regensburger DISKUSSIONSBEITRÄGE zur Wirtschaftswissenschaft A Cluster Based Scatter Search Heuristic for the Vehicle Routing Problem University of Regensburg Discussion Papers in Economics No. 415, November

More information

Column Generation Based Primal Heuristics

Column Generation Based Primal Heuristics Column Generation Based Primal Heuristics C. Joncour, S. Michel, R. Sadykov, D. Sverdlov, F. Vanderbeck University Bordeaux 1 & INRIA team RealOpt Outline 1 Context Generic Primal Heuristics The Branch-and-Price

More information

ROBERTO BATTITI, MAURO BRUNATO. The LION Way: Machine Learning plus Intelligent Optimization. LIONlab, University of Trento, Italy, Apr 2015

ROBERTO BATTITI, MAURO BRUNATO. The LION Way: Machine Learning plus Intelligent Optimization. LIONlab, University of Trento, Italy, Apr 2015 ROBERTO BATTITI, MAURO BRUNATO. The LION Way: Machine Learning plus Intelligent Optimization. LIONlab, University of Trento, Italy, Apr 2015 http://intelligentoptimization.org/lionbook Roberto Battiti

More information

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and education use, including for instruction at the authors institution

More information

New algorithm for analyzing performance of neighborhood strategies in solving job shop scheduling problems

New algorithm for analyzing performance of neighborhood strategies in solving job shop scheduling problems Journal of Scientific & Industrial Research ESWARAMURTHY: NEW ALGORITHM FOR ANALYZING PERFORMANCE OF NEIGHBORHOOD STRATEGIES 579 Vol. 67, August 2008, pp. 579-588 New algorithm for analyzing performance

More information

Neighborhood Combination for Unconstrained Binary Quadratic Programming

Neighborhood Combination for Unconstrained Binary Quadratic Programming id-1 Neighborhood Combination for Unconstrained Binary Quadratic Programming Zhipeng Lü Fred Glover Jin-Kao Hao LERIA, Université d Angers 2 boulevard Lavoisier, 49045 Angers, France lu@info.univ-angers.fr

More information

Maximum Clique Problem

Maximum Clique Problem Maximum Clique Problem Dler Ahmad dha3142@rit.edu Yogesh Jagadeesan yj6026@rit.edu 1. INTRODUCTION Graph is a very common approach to represent computational problems. A graph consists a set of vertices

More information

A Guided Cooperative Search for the Vehicle Routing Problem with Time Windows

A Guided Cooperative Search for the Vehicle Routing Problem with Time Windows ISSI-0076-020-1 A Guided Cooperative Search for the Vehicle Routing Problem with Time Windows Alexandre Le Bouthillier Teodor G. Crainic Peter Kropf Centre de recherche sur les transports, Université de

More information

Basic Search Algorithms

Basic Search Algorithms Basic Search Algorithms Tsan-sheng Hsu tshsu@iis.sinica.edu.tw http://www.iis.sinica.edu.tw/~tshsu 1 Abstract The complexities of various search algorithms are considered in terms of time, space, and cost

More information

ACO and other (meta)heuristics for CO

ACO and other (meta)heuristics for CO ACO and other (meta)heuristics for CO 32 33 Outline Notes on combinatorial optimization and algorithmic complexity Construction and modification metaheuristics: two complementary ways of searching a solution

More information

A Study of Neighborhood Structures for the Multiple Depot Vehicle Scheduling Problem

A Study of Neighborhood Structures for the Multiple Depot Vehicle Scheduling Problem A Study of Neighborhood Structures for the Multiple Depot Vehicle Scheduling Problem Benoît Laurent 1,2 and Jin-Kao Hao 2 1 Perinfo SA, Strasbourg, France 2 LERIA, Université d Angers, Angers, France blaurent@perinfo.com,

More information

HEURISTICS FOR THE NETWORK DESIGN PROBLEM

HEURISTICS FOR THE NETWORK DESIGN PROBLEM HEURISTICS FOR THE NETWORK DESIGN PROBLEM G. E. Cantarella Dept. of Civil Engineering University of Salerno E-mail: g.cantarella@unisa.it G. Pavone, A. Vitetta Dept. of Computer Science, Mathematics, Electronics

More information

2ND INTERNATIONAL CONFERENCE ON METAHEURISTICS - MIC97 1. Graduate School of Engineering, Kyoto University

2ND INTERNATIONAL CONFERENCE ON METAHEURISTICS - MIC97 1. Graduate School of Engineering, Kyoto University 2ND INTERNATIONAL CONFERENCE ON METAHEURISTICS - MIC97 1 A Variable Depth Search Algorithm for the Generalized Assignment Problem Mutsunori Yagiura 1, Takashi Yamaguchi 1 and Toshihide Ibaraki 1 1 Department

More information

Discrete Bandwidth Allocation Considering Fairness and. Transmission Load in Multicast Networks

Discrete Bandwidth Allocation Considering Fairness and. Transmission Load in Multicast Networks Discrete Bandwidth Allocation Considering Fairness and Transmission Load in Multicast Networks Chae Y. Lee and Hee K. Cho Dept. of Industrial Engineering, KAIST, 373- Kusung Dong, Taejon, Korea Abstract

More information

A Course on Meta-Heuristic Search Methods for Combinatorial Optimization Problems

A Course on Meta-Heuristic Search Methods for Combinatorial Optimization Problems A Course on Meta-Heuristic Search Methods for Combinatorial Optimization Problems AutOrI LAB, DIA, Roma Tre Email: mandal@dia.uniroma3.it January 16, 2014 Outline 1 An example Assignment-I Tips Variants

More information

A LOCAL SEARCH GENETIC ALGORITHM FOR THE JOB SHOP SCHEDULING PROBLEM

A LOCAL SEARCH GENETIC ALGORITHM FOR THE JOB SHOP SCHEDULING PROBLEM A LOCAL SEARCH GENETIC ALGORITHM FOR THE JOB SHOP SCHEDULING PROBLEM Kebabla Mebarek, Mouss Leila Hayat and Mouss Nadia Laboratoire d'automatique et productique, Université Hadj Lakhdar -Batna kebabla@yahoo.fr,

More information

Heuristic Algorithms for the Fixed-Charge Multiple Knapsack Problem

Heuristic Algorithms for the Fixed-Charge Multiple Knapsack Problem The 7th International Symposium on Operations Research and Its Applications (ISORA 08) Lijiang, China, October 31 Novemver 3, 2008 Copyright 2008 ORSC & APORC, pp. 207 218 Heuristic Algorithms for the

More information

Towards ParadisEO-MO-GPU: a Framework for GPU-based Local Search Metaheuristics

Towards ParadisEO-MO-GPU: a Framework for GPU-based Local Search Metaheuristics Towards ParadisEO-MO-GPU: a Framework for GPU-based Local Search Metaheuristics N. Melab, T-V. Luong, K. Boufaras and E-G. Talbi Dolphin Project INRIA Lille Nord Europe - LIFL/CNRS UMR 8022 - Université

More information

Scatter Search: Methodology and Applications

Scatter Search: Methodology and Applications Scatter Search: Methodology and Applications Manuel Laguna University of Colorado Rafael Martí University of Valencia Based on Scatter Search: Methodology and Implementations in C Laguna, M. and R. Martí

More information

A Parallel Architecture for the Generalized Traveling Salesman Problem

A Parallel Architecture for the Generalized Traveling Salesman Problem A Parallel Architecture for the Generalized Traveling Salesman Problem Max Scharrenbroich AMSC 663 Project Proposal Advisor: Dr. Bruce L. Golden R. H. Smith School of Business 1 Background and Introduction

More information

MA PM: memetic algorithms with population management

MA PM: memetic algorithms with population management Computers & Operations Research 33 (2006) 1214 1225 www.elsevier.com/locate/cor MA PM: memetic algorithms with population management Kenneth Sörensen a,, Marc Sevaux b a University of Antwerp, Faculty

More information

Heuristis for Combinatorial Optimization

Heuristis for Combinatorial Optimization Heuristis for Combinatorial Optimization Luigi De Giovanni Dipartimento di Matematica, Università di Padova Luigi De Giovanni Heuristic for Combinatorial Optimization 1 / 57 Exact and heuristic methods

More information

Complete Local Search with Memory

Complete Local Search with Memory Complete Local Search with Memory Diptesh Ghosh Gerard Sierksma SOM-theme A Primary Processes within Firms Abstract Neighborhood search heuristics like local search and its variants are some of the most

More information

SavingsAnts for the Vehicle Routing Problem. Karl Doerner Manfred Gronalt Richard F. Hartl Marc Reimann Christine Strauss Michael Stummer

SavingsAnts for the Vehicle Routing Problem. Karl Doerner Manfred Gronalt Richard F. Hartl Marc Reimann Christine Strauss Michael Stummer SavingsAnts for the Vehicle Routing Problem Karl Doerner Manfred Gronalt Richard F. Hartl Marc Reimann Christine Strauss Michael Stummer Report No. 63 December 2001 December 2001 SFB Adaptive Information

More information

Optimal Crane Scheduling

Optimal Crane Scheduling Optimal Crane Scheduling IonuŃ Aron Iiro Harjunkoski John Hooker Latife Genç Kaya March 2007 1 Problem Schedule 2 cranes to transfer material between locations in a manufacturing plant. For example, copper

More information

Advances in Metaheuristics on GPU

Advances in Metaheuristics on GPU Advances in Metaheuristics on GPU 1 Thé Van Luong, El-Ghazali Talbi and Nouredine Melab DOLPHIN Project Team May 2011 Interests in optimization methods 2 Exact Algorithms Heuristics Branch and X Dynamic

More information

Parallel Branch & Bound

Parallel Branch & Bound Parallel Branch & Bound Bernard Gendron Université de Montréal gendron@iro.umontreal.ca Outline Mixed integer programming (MIP) and branch & bound (B&B) Linear programming (LP) based B&B Relaxation and

More information

Algorithms for Integer Programming

Algorithms for Integer Programming Algorithms for Integer Programming Laura Galli November 9, 2016 Unlike linear programming problems, integer programming problems are very difficult to solve. In fact, no efficient general algorithm is

More information

Unidimensional Search for solving continuous high-dimensional optimization problems

Unidimensional Search for solving continuous high-dimensional optimization problems 2009 Ninth International Conference on Intelligent Systems Design and Applications Unidimensional Search for solving continuous high-dimensional optimization problems Vincent Gardeux, Rachid Chelouah,

More information

An ILS Algorithm for the Team Orienteering Problem with Variable Profit

An ILS Algorithm for the Team Orienteering Problem with Variable Profit An ILS Algorithm for the Team Orienteering Problem with Variable Profit Aldy Gunawan School of Information Systems Singapore Management University, Singapore Tel: (+65) 6808-5227, Email: aldygunawan@smu.edu.sg

More information

SCATTER SEARCH BASED METAHEURISTIC FOR ROBUST OPTIMIZATION OF THE DEPLOYING OF DWDM TECHNOLOGY ON OPTICAL NETWORKS WITH SURVIVABILITY

SCATTER SEARCH BASED METAHEURISTIC FOR ROBUST OPTIMIZATION OF THE DEPLOYING OF DWDM TECHNOLOGY ON OPTICAL NETWORKS WITH SURVIVABILITY Yugoslav Journal of Operations Research 15 (2005), Number 1, 65-77 SCATTER SEARCH BASED METAHEURISTIC FOR ROBUST OPTIMIZATION OF THE DEPLOYING OF DWDM TECHNOLOGY ON OPTICAL NETWORKS WITH SURVIVABILITY

More information

Heuristis for Combinatorial Optimization

Heuristis for Combinatorial Optimization Heuristis for Combinatorial Optimization Luigi De Giovanni Dipartimento di Matematica, Università di Padova Luigi De Giovanni Heuristic for Combinatorial Optimization 1 / 59 Exact and heuristic methods

More information

A simulated annealing algorithm for the vehicle routing problem with time windows and synchronization constraints

A simulated annealing algorithm for the vehicle routing problem with time windows and synchronization constraints A simulated annealing algorithm for the vehicle routing problem with time windows and synchronization constraints Sohaib Afifi 1, Duc-Cuong Dang 1,2, and Aziz Moukrim 1 1 Université de Technologie de Compiègne

More information

Local search heuristic for multiple knapsack problem

Local search heuristic for multiple knapsack problem International Journal of Intelligent Information Systems 2015; 4(2): 35-39 Published online February 14, 2015 (http://www.sciencepublishinggroup.com/j/ijiis) doi: 10.11648/j.ijiis.20150402.11 ISSN: 2328-7675

More information

Note: In physical process (e.g., annealing of metals), perfect ground states are achieved by very slow lowering of temperature.

Note: In physical process (e.g., annealing of metals), perfect ground states are achieved by very slow lowering of temperature. Simulated Annealing Key idea: Vary temperature parameter, i.e., probability of accepting worsening moves, in Probabilistic Iterative Improvement according to annealing schedule (aka cooling schedule).

More information

T S 2 P ACK: A Two-Level Tabu Search for the Three-dimensional Bin Packing Problem

T S 2 P ACK: A Two-Level Tabu Search for the Three-dimensional Bin Packing Problem T S 2 P ACK: A Two-Level Tabu Search for the Three-dimensional Bin Packing Problem Teodor Gabriel Crainic Département de management et technologie École des sciences de la gestion, U.Q.A.M. and CIRRELT,

More information

AN INTRODUCTION TO TABU SEARCH

AN INTRODUCTION TO TABU SEARCH Chapter 2 AN INTRODUCTION TO TABU SEARCH Michel Gendreau Centre de recherche sur les transports Département d informatique et de recherche opérationnelle Université de Montréal Case postale 6128, Succursale

More information

n Informally: n How to form solutions n How to traverse the search space n Systematic: guarantee completeness

n Informally: n How to form solutions n How to traverse the search space n Systematic: guarantee completeness Advanced Search Applications: Combinatorial Optimization Scheduling Algorithms: Stochastic Local Search and others Analyses: Phase transitions, structural analysis, statistical models Combinatorial Problems

More information

Tabu Search Method for Solving the Traveling salesman Problem. University of Mosul Received on: 10/12/2007 Accepted on: 4/3/2008

Tabu Search Method for Solving the Traveling salesman Problem. University of Mosul Received on: 10/12/2007 Accepted on: 4/3/2008 Raf. J. of Comp. & Math s., Vol. 5, No. 2, 2008 Tabu Search Method for Solving the Traveling salesman Problem Isra Natheer Alkallak Ruqaya Zedan Sha ban College of Nursing College of Medicine University

More information

A Hybrid Genetic Algorithm for the Distributed Permutation Flowshop Scheduling Problem Yan Li 1, a*, Zhigang Chen 2, b

A Hybrid Genetic Algorithm for the Distributed Permutation Flowshop Scheduling Problem Yan Li 1, a*, Zhigang Chen 2, b International Conference on Information Technology and Management Innovation (ICITMI 2015) A Hybrid Genetic Algorithm for the Distributed Permutation Flowshop Scheduling Problem Yan Li 1, a*, Zhigang Chen

More information

Using Penalties instead of Rewards: Solving OCST Problems with Problem-Specific Guided Local Search

Using Penalties instead of Rewards: Solving OCST Problems with Problem-Specific Guided Local Search Using Penalties instead of Rewards: Solving OCST Problems with Problem-Specific Guided Local Search Wolfgang Steitz, Franz Rothlauf Working Paper 01/2011 March 2011 Working Papers in Information Systems

More information

The Branch & Move algorithm: Improving Global Constraints Support by Local Search

The Branch & Move algorithm: Improving Global Constraints Support by Local Search Branch and Move 1 The Branch & Move algorithm: Improving Global Constraints Support by Local Search Thierry Benoist Bouygues e-lab, 1 av. Eugène Freyssinet, 78061 St Quentin en Yvelines Cedex, France tbenoist@bouygues.com

More information

Solving the Capacitated Single Allocation Hub Location Problem Using Genetic Algorithm

Solving the Capacitated Single Allocation Hub Location Problem Using Genetic Algorithm Solving the Capacitated Single Allocation Hub Location Problem Using Genetic Algorithm Faculty of Mathematics University of Belgrade Studentski trg 16/IV 11 000, Belgrade, Serbia (e-mail: zoricast@matf.bg.ac.yu)

More information

TABU SEARCH FOR MIXED INTEGER PROGRAMMING

TABU SEARCH FOR MIXED INTEGER PROGRAMMING Chapter 11 TABU SEARCH FOR MIXED INTEGER PROGRAMMING João Pedro Pedroso Departamento de Ciência de Computadores, Faculdade de Ciências da Universidade do Porto, Rua do Campo Alegre, 823 4150-180 Porto,

More information

Preliminary Background Tabu Search Genetic Algorithm

Preliminary Background Tabu Search Genetic Algorithm Preliminary Background Tabu Search Genetic Algorithm Faculty of Information Technology University of Science Vietnam National University of Ho Chi Minh City March 2010 Problem used to illustrate General

More information

Local search. Heuristic algorithms. Giovanni Righini. University of Milan Department of Computer Science (Crema)

Local search. Heuristic algorithms. Giovanni Righini. University of Milan Department of Computer Science (Crema) Local search Heuristic algorithms Giovanni Righini University of Milan Department of Computer Science (Crema) Exchange algorithms In Combinatorial Optimization every solution x is a subset of E An exchange

More information

Methods and Models for Combinatorial Optimization Heuristis for Combinatorial Optimization

Methods and Models for Combinatorial Optimization Heuristis for Combinatorial Optimization Methods and Models for Combinatorial Optimization Heuristis for Combinatorial Optimization L. De Giovanni 1 Introduction Solution methods for Combinatorial Optimization Problems (COPs) fall into two classes:

More information

Guidelines for the use of meta-heuristics in combinatorial optimization

Guidelines for the use of meta-heuristics in combinatorial optimization European Journal of Operational Research 151 (2003) 247 252 Preface Guidelines for the use of meta-heuristics in combinatorial optimization Alain Hertz a, *, Marino Widmer b www.elsevier.com/locate/dsw

More information

Parallel Machine Scheduling: A (Meta)Heuristic Computational Evaluation MIC 2001, Porto, Portugal

Parallel Machine Scheduling: A (Meta)Heuristic Computational Evaluation MIC 2001, Porto, Portugal Parallel Machine Scheduling: A (Meta)Heuristic Computational Evaluation MIC 2001, Porto, Portugal Marc Sevaux, Philippe Thomin fmarc.sevaux, Philippe.Thoming@univ-valenciennes.fr. University of Valenciennes

More information

Constructive meta-heuristics

Constructive meta-heuristics Constructive meta-heuristics Heuristic algorithms Giovanni Righini University of Milan Department of Computer Science (Crema) Improving constructive algorithms For many problems constructive algorithms

More information

Optimal Crane Scheduling

Optimal Crane Scheduling Optimal Crane Scheduling Ionu Aron IBM Watson Lab Latife Genç Kaya, John Hooker Carnegie Mellon University Iiro Harjunkoski, Marco Fahl ABB Group November 2006 1 Thanks to PITA Pennsylvania Infrastructure

More information

An Efficient Meta-Heuristic for Multi-Dimensional Multi-Container Packing

An Efficient Meta-Heuristic for Multi-Dimensional Multi-Container Packing An Efficient Meta-Heuristic for Multi-Dimensional Multi-Container Packing Guido Perboli Teodor Gabriel Crainic Roberto Tadei March 2011 Bureaux de Montréal : Bureaux de Québec : Université de Montréal

More information

JOURNAL OF OBJECT TECHNOLOGY

JOURNAL OF OBJECT TECHNOLOGY JOURNAL OF OBJECT TECHNOLOGY Online at http://www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2005 Vol. 4, No. 1, January-February 2005 A Java Implementation of the Branch and Bound

More information

Adaptive feasible and infeasible tabu search for weighted vertex coloring

Adaptive feasible and infeasible tabu search for weighted vertex coloring Adaptive feasible and infeasible tabu search for weighted vertex coloring Wen Sun a, Jin-Kao Hao a,b,, Xiangjing Lai c, Qinghua Wu d a LERIA, Université d Angers, 2 Boulevard Lavoisier, 49045 Angers, France

More information

TABU search and Iterated Local Search classical OR methods

TABU search and Iterated Local Search classical OR methods TABU search and Iterated Local Search classical OR methods tks@imm.dtu.dk Informatics and Mathematical Modeling Technical University of Denmark 1 Outline TSP optimization problem Tabu Search (TS) (most

More information

Outline. TABU search and Iterated Local Search classical OR methods. Traveling Salesman Problem (TSP) 2-opt

Outline. TABU search and Iterated Local Search classical OR methods. Traveling Salesman Problem (TSP) 2-opt TABU search and Iterated Local Search classical OR methods Outline TSP optimization problem Tabu Search (TS) (most important) Iterated Local Search (ILS) tks@imm.dtu.dk Informatics and Mathematical Modeling

More information

GRASP with Path-Relinking for the SONET Ring Assignment Problem

GRASP with Path-Relinking for the SONET Ring Assignment Problem GRASP with Path-Relinking for the SONET Ring Assignment Problem Lucas de O. Bastos Inst. de Computação - UFF Niterói - RJ - Brasil lbastos@ic.uff.br Luiz S. Ochi Inst. de Computação - UFF Niterói - RJ

More information

IMPLEMENTATION OF A FIXING STRATEGY AND PARALLELIZATION IN A RECENT GLOBAL OPTIMIZATION METHOD

IMPLEMENTATION OF A FIXING STRATEGY AND PARALLELIZATION IN A RECENT GLOBAL OPTIMIZATION METHOD IMPLEMENTATION OF A FIXING STRATEGY AND PARALLELIZATION IN A RECENT GLOBAL OPTIMIZATION METHOD Figen Öztoprak, Ş.İlker Birbil Sabancı University Istanbul, Turkey figen@su.sabanciuniv.edu, sibirbil@sabanciuniv.edu

More information

MIC 99. III Metaheuristics International Conference. PUC-Rio - Catholic University of Rio de Janeiro. Angra dos Reis, Brazil.

MIC 99. III Metaheuristics International Conference. PUC-Rio - Catholic University of Rio de Janeiro. Angra dos Reis, Brazil. MIC 99 III Metaheuristics International Conference organized by PUC-Rio - Catholic University of Rio de Janeiro Angra dos Reis, Brazil July 19-22, 1999 MIC 99 - III Metaheuristics International Conference

More information

Workloads Programmierung Paralleler und Verteilter Systeme (PPV)

Workloads Programmierung Paralleler und Verteilter Systeme (PPV) Workloads Programmierung Paralleler und Verteilter Systeme (PPV) Sommer 2015 Frank Feinbube, M.Sc., Felix Eberhardt, M.Sc., Prof. Dr. Andreas Polze Workloads 2 Hardware / software execution environment

More information

A New Exam Timetabling Algorithm

A New Exam Timetabling Algorithm A New Exam Timetabling Algorithm K.J. Batenburg W.J. Palenstijn Leiden Institute of Advanced Computer Science (LIACS), Universiteit Leiden P.O. Box 9512, 2300 RA Leiden, The Netherlands {kbatenbu, wpalenst}@math.leidenuniv.nl

More information

An Improved Hybrid Genetic Algorithm for the Generalized Assignment Problem

An Improved Hybrid Genetic Algorithm for the Generalized Assignment Problem An Improved Hybrid Genetic Algorithm for the Generalized Assignment Problem Harald Feltl and Günther R. Raidl Institute of Computer Graphics and Algorithms Vienna University of Technology, Vienna, Austria

More information

A tabu search approach for makespan minimization in a permutation flow shop scheduling problems

A tabu search approach for makespan minimization in a permutation flow shop scheduling problems A tabu search approach for makespan minimization in a permutation flow shop scheduling problems Sawat Pararach Department of Industrial Engineering, Faculty of Engineering, Thammasat University, Pathumthani

More information

Test Cost Optimization Using Tabu Search

Test Cost Optimization Using Tabu Search J. Software Engineering & Applications, 2010, 3: 477-486 doi:10.4236/jsea.2010.35054 Published Online May 2010 (http://www.scirp.org/journal/jsea) Anu Sharma*, Arpita Jadhav, Praveen Ranjan Srivastava,

More information

The Traveling Salesman Problem: Adapting 2-Opt And 3-Opt Local Optimization to Branch & Bound Techniques

The Traveling Salesman Problem: Adapting 2-Opt And 3-Opt Local Optimization to Branch & Bound Techniques The Traveling Salesman Problem: Adapting 2-Opt And 3-Opt Local Optimization to Branch & Bound Techniques Hitokazu Matsushita hitokazu@byu.edu Ogden Mills ogdenlaynemills@gmail.com Nathan Lambson nlambson@gmail.com

More information

The open vehicle routing problem with driver nodes and time deadlines

The open vehicle routing problem with driver nodes and time deadlines The open vehicle routing problem with driver nodes and time deadlines D Aksen 1, Z Özyurt 1 and N Aras 2 1 Koç University, İstanbul, Turkey; and 2 Boğaziçi University, İstanbul, Turkey In this paper we

More information

1.3.4 case and case* macro since 1.2. Listing Conditional Branching, Fast Switch. Listing Contract

1.3.4 case and case* macro since 1.2. Listing Conditional Branching, Fast Switch. Listing Contract 1.3.4 case and case* macro since 1.2 Listing 3. 14. Conditional Branching, Fast Switch (case [expression & clauses]) case is a conditional statement which accepts a list of testing conditions to determine

More information

Lecture Topics. Announcements. Today: Advanced Scheduling (Stallings, chapter ) Next: Deadlock (Stallings, chapter

Lecture Topics. Announcements. Today: Advanced Scheduling (Stallings, chapter ) Next: Deadlock (Stallings, chapter Lecture Topics Today: Advanced Scheduling (Stallings, chapter 10.1-10.4) Next: Deadlock (Stallings, chapter 6.1-6.6) 1 Announcements Exam #2 returned today Self-Study Exercise #10 Project #8 (due 11/16)

More information

Parallel Machine Scheduling: A (Meta)Heuristic Computational Evaluation IRCCyN, Avril 2001, Nantes

Parallel Machine Scheduling: A (Meta)Heuristic Computational Evaluation IRCCyN, Avril 2001, Nantes Parallel Machine Scheduling: A (Meta)Heuristic Computational Evaluation IRCCyN, Avril 2001, Nantes Marc Sevaux, Philippe Thomin Marc.Sevaux, Philippe.Thomin @univ-valenciennes.fr. University of Valenciennes

More information

An Efficient Heuristic for Reliability Design Optimization Problems

An Efficient Heuristic for Reliability Design Optimization Problems An Efficient Heuristic for Reliability Design Optimization Problems Mohamed Ouzineb Mustapha Nourelfath Michel Gendreau February 2009 Mohamed Ouzineb 1,2, Mustapha Nourelfath 1,3,*, Michel Gendreau 1,2

More information

A Randomized Algorithm for Minimizing User Disturbance Due to Changes in Cellular Technology

A Randomized Algorithm for Minimizing User Disturbance Due to Changes in Cellular Technology A Randomized Algorithm for Minimizing User Disturbance Due to Changes in Cellular Technology Carlos A. S. OLIVEIRA CAO Lab, Dept. of ISE, University of Florida Gainesville, FL 32611, USA David PAOLINI

More information

Foundation of Parallel Computing- Term project report

Foundation of Parallel Computing- Term project report Foundation of Parallel Computing- Term project report Shobhit Dutia Shreyas Jayanna Anirudh S N (snd7555@rit.edu) (sj7316@rit.edu) (asn5467@rit.edu) 1. Overview: Graphs are a set of connections between

More information

An Ant Approach to the Flow Shop Problem

An Ant Approach to the Flow Shop Problem An Ant Approach to the Flow Shop Problem Thomas Stützle TU Darmstadt, Computer Science Department Alexanderstr. 10, 64283 Darmstadt Phone: +49-6151-166651, Fax +49-6151-165326 email: stuetzle@informatik.tu-darmstadt.de

More information

Task Allocation for Minimizing Programs Completion Time in Multicomputer Systems

Task Allocation for Minimizing Programs Completion Time in Multicomputer Systems Task Allocation for Minimizing Programs Completion Time in Multicomputer Systems Gamal Attiya and Yskandar Hamam Groupe ESIEE Paris, Lab. A 2 SI Cité Descartes, BP 99, 93162 Noisy-Le-Grand, FRANCE {attiyag,hamamy}@esiee.fr

More information

A Heuristic Algorithm for the Job Shop Scheduling

A Heuristic Algorithm for the Job Shop Scheduling A Heuristic Algorithm for the Job Shop Scheduling Problem Ai-Hua Yin UFsoft School of Software Jiangxi University of Finance and Economics, Nanchang 3313, Jiangxi China Aihuayin@mail.china.com Abstract.

More information

Proceedings of the 2012 International Conference on Industrial Engineering and Operations Management Istanbul, Turkey, July 3 6, 2012

Proceedings of the 2012 International Conference on Industrial Engineering and Operations Management Istanbul, Turkey, July 3 6, 2012 Proceedings of the 2012 International Conference on Industrial Engineering and Operations Management Istanbul, Turkey, July 3 6, 2012 Solving Assembly Line Balancing Problem in the State of Multiple- Alternative

More information

Effective Optimizer Development for Solving Combinatorial Optimization Problems *

Effective Optimizer Development for Solving Combinatorial Optimization Problems * Proceedings of the 11th WSEAS International Conference on SYSTEMS, Agios Nikolaos, Crete Island, Greece, July 23-25, 2007 311 Effective Optimizer Development for Solving Combinatorial Optimization s *

More information

Adjusted Clustering Clarke-Wright Saving Algorithm for Two Depots-N Vehicles

Adjusted Clustering Clarke-Wright Saving Algorithm for Two Depots-N Vehicles Adjusted Clustering Clarke-Wright Saving Algorithm for Two Depots-N Vehicles S. Halim, L. Yoanita Department of Industrial Engineering, Petra Christian University, Surabaya, Indonesia (halim@petra.ac.id)

More information

A new inter-island genetic operator for optimization problems with block properties

A new inter-island genetic operator for optimization problems with block properties A new inter-island genetic operator for optimization problems with block properties Wojciech Bożejko 1 and Mieczys law Wodecki 2 1 Institute of Engineering Cybernetics, Wroc law University of Technology

More information

Parallel Computing. Slides credit: M. Quinn book (chapter 3 slides), A Grama book (chapter 3 slides)

Parallel Computing. Slides credit: M. Quinn book (chapter 3 slides), A Grama book (chapter 3 slides) Parallel Computing 2012 Slides credit: M. Quinn book (chapter 3 slides), A Grama book (chapter 3 slides) Parallel Algorithm Design Outline Computational Model Design Methodology Partitioning Communication

More information