SlideShare uma empresa Scribd logo
1 de 11
Baixar para ler offline
Ertek, G., Aksu, B., Birbil, S. E., İkikat, M. C., Yıldırmaz, C (2005). "Application of local search
methods for solving a quadratic assignment problem: A case study", Proceedings of Computers and
Industrial Engineering Conference, 2005

Note: This is the final draft version of this paper. Please cite this paper (or this final draft) as
above. You can download this final draft from http://research.sabanciuniv.edu.




         APPLICATION OF LOCAL SEARCH METHODS FOR SOLVING

            A QUADRATIC ASSIGNMENT PROBLEM: A CASE STUDY



             Gürdal Ertek, Burak Aksu, Ş. İlker Birbil, Murat Cihan İkikat, Can Yıldırmaz




                                           Sabancı University

                                          Orhanlı, Tuzla 34956

                                             Istanbul, Turkey




                                                                                                       1
Abstract:

This paper discusses the design and application of local search methods to a real-life
application at a steel cord manufacturing plant. The case study involves a layout
problem that can be represented as a Quadratic Assignment Problem (QAP). Due to the
nature of the manufacturing process, certain machinery need to be allocated in close
proximity to each other. This issue is incorporated into the objective function through
assigning high penalty costs to the unfavorable allocations. QAP belongs to one of the
most difficult class of combinatorial optimization problems, and is not solvable to
optimality as the number of facilities increases. We implement the well-known local
search methods, 2-opt, 3-opt and tabu search. We compare the solution performances
of the methods to the results obtained from the NEOS server, which provides free
access to many optimization solvers on the internet.




Keywords:

quadratic assignment problem, steel cord manufacturing, local search methods, tabu
search, NEOS online server




Introduction

This paper discusses local search heuristics applied to a real-world problem from industry. The
problem is the determination of the layout of a steel-cord manufacturing factory. Steel cord is
typically used as the main reinforcement material in manufacturing steel radial tires. It strengthens
the tire to provide fuel savings, long mileage, safety and comfort. The steel cord manufacturing goes
through continuous processes, where wire semi-products are stored on discrete inventory units,
namely “spools” (see Figure 1). The literature on steel cord manufacturing is not extensive, since this
is a very specialized type of manufacturing, and the systems required are produced and installed by
only a handful of companies in the world. We refer the interested readers to the following three
studies: Thomas et al. (2002) report improvement of operations in a steel cord manufacturing
company using simulation. Mercankaya (2003) develops an optimization-based decision support
system for steel cord manufacturing. Türkseven and Ertek (2003) explain how the quality and the
productivity were improved in steel cord manufacturing through custom-built simulation software.
                                                                                               2
Their objective is to determine the optimal spool lengths under certain constraints on the spool
lengths.




                                Figure 1. Spool on which wire is wound




In steel cord manufacturing incoming raw material, the “steel rod wire”, is thinned by dry and wet
drawing into “filaments” that are used in successive bunching operations to construct the “steel cord”
final products (see Figure 2). The focus of our research is the second phase of production, which starts
with wet wire drawing and ends with spiraling. The first phase of the production is carried out by
machines that are fixed to their locations. The chances of moving these machines are next to none,
since considerable time and resources would be required to make such movements. The second phase
of production, on the other hand, is carried out by machines that can be relocated. The only important
issue with the second phase of production is that certain machinery, which we refer to as machine
types MT01, MT02 and MT03, have to be located in the neighborhood of a lubricant pool. These
machines carry out wet drawing of steel cord, and use the lubricant liquid, which is supplied to the
machines by an underground pipeline system. We reflected this location constraint in the
mathematical model that we developed by assigning a high flow volume between these machine types
and the lubricant cells.




                                                                                                      3
Figure 2. Production processes in steel cord manufacturing




The Mathematical Model




We assume that the flow from an area of machine type i to another area of machine type j is equally
distributed (see Figure 3). Notice that this is a simplification of the actual process because after the
machines are assigned to the locations, one would send as much flow as possible from a type i
machine to the closest type j machine. We elaborate this issue in the summary and future research
section.




                                                                                                      4
Figure 3. Equal distribution of flow from an area of machine type i to another area of machine type j




In the subsequent discussion, the acronyms LBR and WH stand for the lubricant pool and the
warehouse, respectively. Before we give the mathematical model, let us define the sets, the parameters
and the decision variables.




Sets

M: the set of machine types, M = {MT01, MT02, …, MT12, LBR, WH}

A: the set of areas, A = {1, 2, …, 69}

Parameters



                                                                                                         5
Fij:   the total flow from an area dedicated to machine type i to an area dedicated to machine type j;
i, j  M

Dkl:   the rectilinear distance between area k and l; k, l  A

Ki: the number of areas assigned to machine type i

Decision variables

xik = 1 if area k is assigned to machine type i; 0 otherwise.




The overall mathematical model then becomes

              min      F D
                     iM kA jM lA
                                         ij    x x jl
                                              kl ik




             s.t.    x    ik    Ki ,                  i  M                                           (1)
                     kA




                     x    ik    1,                    k  A                                           (2)
                     iM



                     xik  1,                           (i, k )  {(i, k ) : i  LBR, k  1,2,  ,6}    (3)


                     xik  1,                           (i, k )  {(i, k ) : i  WH, k  49,54,59,64,69} (4)


                     xik binary                         i  M and k  A.                               (5)




The constraint set (1) ensures that the number of areas allocated to each machine type is equal to Ki;
the required number of areas for that machine type. The constraint set (2) ensures that each area is
assigned to exactly one machine type. To fix the areas assigned to the lubricant and to the warehouse,
we introduce the constraint sets (3) and (4), respectively. The last set of constraints, (5) states that the
decision variables xik should be binary.




                                                                                                                6
As we mentioned above, to locate the machine types MT01, MT02 and MT03 close to the lubricant
pool, we have assigned a large flow value between these machine types and the lubricant pool. We also
assigned high values for flows from machines that directly feed into the warehouse (namely, machines
MT04, MT06, MT07, MT11, MT12). Clearly, assigning unnecessarily large values for specific flows
creates sudden jumps in the objective function values. Therefore, a special care should be taken to set
this value. In our study, we have used the following calculation




                         Fij  F ji  F for i  LBR and j {MT01, MT02, MT03},


                   Fij  F ji  F for i  WH and j {MT04, MT06, MT07, MT11, MT12},


where


                                    F  iM {LBR ,WH }  jM {LBR ,WH } Fij .




The presented mathematical model is very similar to the Quadratic Assignment Problem (QAP)
problem. Thus, some of the solution methods developed for QAP can be applied to solve the presented
problem after minor modifications. Among these solution methods, local search heuristics such; as
swapping, tabu search, and so on, are frequently used because these methods are relatively easy to
implement. Moreover, due to the moderate size of the presented problem, standard solvers may also
provide a solution. This is particularly important for practitioners, who prefer to use software
packages rather than creating their own tools. We next present our efforts to solve the problem with
an easily accessible online solver as well as with some local search methods.




Solution Approaches




GAMS Model

The first solution approach that we applied was to build a mathematical model using the GAMS
software (http://www.gams.com). Since the model required specification of the rectilinear distances
                                                                                                  7
between areas we had to implement a “model generator” program to generate the model
automatically based on input data. This implementation was carried out using the Java programming
language. The model generator reads in the machine types, the number of areas assigned to each
machine type (Ki), and the flows from each area of machine type i to each area of machine type j (i, j 
M). The model generator then generates the GAMS model file which is submitted to NEOS server
which provides free access to many optimization solvers on the internet (http://www-
neos.mcs.anl.gov/neos/).

We used the submit client (written in Java) to submit the GAMS model to NEOS server. While
submitting we selected the Solvers menu, the menu item “Mixed Integer Nonlinearly Constrained
Optimization”, and finally the menu item “SBB [GAMS Input]”.

The solution found by the online solver has objective function value of 6,953,483 and is given in
Figure 4. The visualization is done by a Java program. In this solution MT01, MT02, and MT03 are
assigned to areas close to the lubricant (LBR).




2-opt and 3-opt

We implemented 2-opt and 3-opt algorithms for the problem again using Java. The 2-opt algorithm
performs an exchange among the machine types of two areas, and keeps the solution if the objective
function (OF) value has improved (decreased). 3-opt performs an exchange among machine types of
three areas, and keeps the solution if the OF value has improved (decreased).

We fed the solution in Figure 4 as the starting solution for both 2-opt and 3-opt. The algorithms
terminated without finding any improved solutions.




Tabu search

Finally we employed the well-known tabu search heuristic developed by Taillard (1991) to our
problem.    The   C++    code    for   the   heuristic   is   available   at   the   following   address:
http://ina.eivd.ch/collaborateurs/etd/. Since the objective function value in our problem has to
involve the additional costs resulting from the large flows to the lubricant cells, we have slightly
modified the algorithm proposed by Taillard (1991). We selected 5 different starting solutions, and

                                                                                                       8
observed that all these solutions had the objective function value of 6,953,483, which is identical to
the objective function value found by NEOS server. This shows that tabu search heuristic is very much
applicable for the problem that we have presented.




              Figure 4. The layout suggested by both NEOS and local search heuristics




Summary and Future Research




We have presented a slightly-modified QAP model and discussed the solution approaches that we
employed to solve the model. For our problem, where the real-world data came from a steel cord
manufacturer, the solution (in Figure 4) suggested by a well-known tabu search heuristic was the
same as the solution found by the NEOS server. We have also observed that 2-opt and 3-opt heuristics
could not improve on this solution. This solution thus can be considered a pseudo-optimal solution.

There is an interesting research problem that can be defined based on the problem described here. In
the problem that we presented we have assumed that the flow from each area of machine type i to
each area of machine type i is equal. There is no guarantee that this is the best policy. Indeed, the
decision of how to assign the flows from each area of machine type i to each area of machine type j is

                                                                                                      9
an embedded network flow problem. For example, the optimal flows for the system in Figure 3 can be
as given in Figure 5. Given a layout, each flow assignment is a possible solution, and given a flow
assignment each layout choice is a possible solution. Thus, there is a need to develop algorithms that
can solve these two interrelated problems simultaneously. Birbil et al. (2005) discuss this problem.




            Figure 5. A possible assignment of flows between areas of two machine types




References




Birbil, Ş. İ., Ertek, G., Frenk, J. B. G., Still, G., & Zhang, S. (2005). Simultaneous solution of
   assignment and network flow problems. Working paper. Istanbul, Turkey: Sabancı University.

Mercankaya, B. (2003). Sales forecasting and production planning of BEKSA in the context of supply
   chain management. LFI report. Istanbul, Turkey: Sabancı University.

                                                                                                       10
Taillard, E. (1991). Robust taboo search for the QAP. Parallel Computing, 17, 443-455.

Thomas, J., Todi, J., & Paranjpe, A. (2002). Optimization of operations in a steel wire manufacturing
   company. In E. Yücesan, C. H. Chen, J. L. Snowdon, and J. M. Charnes: Proceedings of 2002
   Winter Simulation Conference (pp. 1151-1156). Piscataway, New Jersey: Institute of Electrical and
   Electronics Engineers.

Türkseven, C. H., & Ertek, G. (2003). Simulation modeling for quality and productivity in steel-cord
   manufacturing. In S. Chick, P. J. Sanchez, D. Ferrin, & D. J. Morrice: Proceedings of 2003 Winter
   Simulation Conference (pp. 1225-1229). Piscataway, New Jersey: Institute of Electrical and
   Electronics Engineers.




                                                                                                  11

Mais conteúdo relacionado

Mais procurados

CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...
CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...
CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...VLSICS Design
 
Evolution of 3D Surface Parameters: A Comprehensive Survey
Evolution of 3D Surface Parameters: A Comprehensive SurveyEvolution of 3D Surface Parameters: A Comprehensive Survey
Evolution of 3D Surface Parameters: A Comprehensive Surveytheijes
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520IJRAT
 
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...inventionjournals
 
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...IJEEE
 
Finite_Element_Analysis_with_MATLAB_GUI
Finite_Element_Analysis_with_MATLAB_GUIFinite_Element_Analysis_with_MATLAB_GUI
Finite_Element_Analysis_with_MATLAB_GUIColby White
 
Optimization Of K-Means Clustering For DECT Using ACO
Optimization Of K-Means Clustering For DECT Using ACOOptimization Of K-Means Clustering For DECT Using ACO
Optimization Of K-Means Clustering For DECT Using ACOIRJET Journal
 
Iaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdl
Iaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdlIaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdl
Iaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdlIaetsd Iaetsd
 
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATIONICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATIONijcga
 
ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization  ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization ijcga
 
Design of Transparent Ratchet Arrays for Directional Transmission
Design of Transparent Ratchet Arrays for Directional TransmissionDesign of Transparent Ratchet Arrays for Directional Transmission
Design of Transparent Ratchet Arrays for Directional TransmissionIJERDJOURNAL
 
Histogram Equalization
Histogram EqualizationHistogram Equalization
Histogram EqualizationEr. Nancy
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Hybrid method for automating generation of reticulated structures (lattice st...
Hybrid method for automating generation of reticulated structures (lattice st...Hybrid method for automating generation of reticulated structures (lattice st...
Hybrid method for automating generation of reticulated structures (lattice st...IJECEIAES
 

Mais procurados (19)

I013137481
I013137481I013137481
I013137481
 
CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...
CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...
CONCURRENT TERNARY GALOIS-BASED COMPUTATION USING NANO-APEX MULTIPLEXING NIBS...
 
Evolution of 3D Surface Parameters: A Comprehensive Survey
Evolution of 3D Surface Parameters: A Comprehensive SurveyEvolution of 3D Surface Parameters: A Comprehensive Survey
Evolution of 3D Surface Parameters: A Comprehensive Survey
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520
 
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
 
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
 
Finite_Element_Analysis_with_MATLAB_GUI
Finite_Element_Analysis_with_MATLAB_GUIFinite_Element_Analysis_with_MATLAB_GUI
Finite_Element_Analysis_with_MATLAB_GUI
 
Optimization Of K-Means Clustering For DECT Using ACO
Optimization Of K-Means Clustering For DECT Using ACOOptimization Of K-Means Clustering For DECT Using ACO
Optimization Of K-Means Clustering For DECT Using ACO
 
P410498102
P410498102P410498102
P410498102
 
FPGA Implementation of CORDIC Algorithm Architecture
FPGA Implementation of CORDIC Algorithm ArchitectureFPGA Implementation of CORDIC Algorithm Architecture
FPGA Implementation of CORDIC Algorithm Architecture
 
B010430814
B010430814B010430814
B010430814
 
Iaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdl
Iaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdlIaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdl
Iaetsd vlsi architecture for exploiting carry save arithmetic using verilog hdl
 
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATIONICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
 
ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization  ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization
 
Design of Transparent Ratchet Arrays for Directional Transmission
Design of Transparent Ratchet Arrays for Directional TransmissionDesign of Transparent Ratchet Arrays for Directional Transmission
Design of Transparent Ratchet Arrays for Directional Transmission
 
Histogram Equalization
Histogram EqualizationHistogram Equalization
Histogram Equalization
 
CAE Assignment
CAE AssignmentCAE Assignment
CAE Assignment
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Hybrid method for automating generation of reticulated structures (lattice st...
Hybrid method for automating generation of reticulated structures (lattice st...Hybrid method for automating generation of reticulated structures (lattice st...
Hybrid method for automating generation of reticulated structures (lattice st...
 

Destaque

Visual and analytical mining of transactions data for production planning f...
Visual and analytical mining of transactions data  for production planning  f...Visual and analytical mining of transactions data  for production planning  f...
Visual and analytical mining of transactions data for production planning f...ertekg
 
Linking Behavioral Patterns to Personal Attributes through Data Re-Mining
Linking Behavioral Patterns to Personal Attributes through Data Re-MiningLinking Behavioral Patterns to Personal Attributes through Data Re-Mining
Linking Behavioral Patterns to Personal Attributes through Data Re-Miningertekg
 
Statistical Scoring Algorithm for Learning and Study Skills
Statistical Scoring Algorithm for Learning and Study SkillsStatistical Scoring Algorithm for Learning and Study Skills
Statistical Scoring Algorithm for Learning and Study Skillsertekg
 
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord ManufacturingSimulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturingertekg
 
Compiere kurulumu
Compiere kurulumuCompiere kurulumu
Compiere kurulumuertekg
 
Re-Mining Item Associations: Methodology and a Case Study in Apparel Retailing
Re-Mining Item Associations: Methodology and a Case Study in Apparel RetailingRe-Mining Item Associations: Methodology and a Case Study in Apparel Retailing
Re-Mining Item Associations: Methodology and a Case Study in Apparel Retailingertekg
 
Gorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin Analizi
Gorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin AnaliziGorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin Analizi
Gorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin Analiziertekg
 
Rule-based expert systems for supporting university students
Rule-based expert systems for supporting university studentsRule-based expert systems for supporting university students
Rule-based expert systems for supporting university studentsertekg
 
The Bullwhip Effect In Supply Chain Reflections After A Decade
The Bullwhip Effect In Supply Chain  Reflections After A DecadeThe Bullwhip Effect In Supply Chain  Reflections After A Decade
The Bullwhip Effect In Supply Chain Reflections After A Decadeertekg
 
Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...
Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...
Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...ertekg
 
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...ertekg
 
Impact of Cross Aisles in a Rectangular Warehouse: A Computational Study
Impact of Cross Aisles in a Rectangular Warehouse:  A Computational StudyImpact of Cross Aisles in a Rectangular Warehouse:  A Computational Study
Impact of Cross Aisles in a Rectangular Warehouse: A Computational Studyertekg
 
Depolama Sistemleri
Depolama SistemleriDepolama Sistemleri
Depolama Sistemleriertekg
 
Optimizing Waste Collection In An Organized Industrial Region: A Case Study
Optimizing Waste Collection  In An Organized Industrial Region: A Case StudyOptimizing Waste Collection  In An Organized Industrial Region: A Case Study
Optimizing Waste Collection In An Organized Industrial Region: A Case Studyertekg
 
Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...
Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...
Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...ertekg
 
Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...ertekg
 
Teaching Warehousing Concepts through Interactive Animations and 3-D Models
Teaching Warehousing Concepts through Interactive Animations  and 3-D ModelsTeaching Warehousing Concepts through Interactive Animations  and 3-D Models
Teaching Warehousing Concepts through Interactive Animations and 3-D Modelsertekg
 
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...ertekg
 
Text Mining with RapidMiner
Text Mining with RapidMinerText Mining with RapidMiner
Text Mining with RapidMinerertekg
 
Re-mining Positive and Negative Association Mining Results
Re-mining Positive and Negative Association Mining ResultsRe-mining Positive and Negative Association Mining Results
Re-mining Positive and Negative Association Mining Resultsertekg
 

Destaque (20)

Visual and analytical mining of transactions data for production planning f...
Visual and analytical mining of transactions data  for production planning  f...Visual and analytical mining of transactions data  for production planning  f...
Visual and analytical mining of transactions data for production planning f...
 
Linking Behavioral Patterns to Personal Attributes through Data Re-Mining
Linking Behavioral Patterns to Personal Attributes through Data Re-MiningLinking Behavioral Patterns to Personal Attributes through Data Re-Mining
Linking Behavioral Patterns to Personal Attributes through Data Re-Mining
 
Statistical Scoring Algorithm for Learning and Study Skills
Statistical Scoring Algorithm for Learning and Study SkillsStatistical Scoring Algorithm for Learning and Study Skills
Statistical Scoring Algorithm for Learning and Study Skills
 
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord ManufacturingSimulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturing
 
Compiere kurulumu
Compiere kurulumuCompiere kurulumu
Compiere kurulumu
 
Re-Mining Item Associations: Methodology and a Case Study in Apparel Retailing
Re-Mining Item Associations: Methodology and a Case Study in Apparel RetailingRe-Mining Item Associations: Methodology and a Case Study in Apparel Retailing
Re-Mining Item Associations: Methodology and a Case Study in Apparel Retailing
 
Gorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin Analizi
Gorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin AnaliziGorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin Analizi
Gorsel Veri Madenciligi’nde bir Vaka Calısması: OSS Verilerinin Analizi
 
Rule-based expert systems for supporting university students
Rule-based expert systems for supporting university studentsRule-based expert systems for supporting university students
Rule-based expert systems for supporting university students
 
The Bullwhip Effect In Supply Chain Reflections After A Decade
The Bullwhip Effect In Supply Chain  Reflections After A DecadeThe Bullwhip Effect In Supply Chain  Reflections After A Decade
The Bullwhip Effect In Supply Chain Reflections After A Decade
 
Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...
Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...
Encapsulating And Representing The Knowledge On The Evolution Of An Engineeri...
 
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...
 
Impact of Cross Aisles in a Rectangular Warehouse: A Computational Study
Impact of Cross Aisles in a Rectangular Warehouse:  A Computational StudyImpact of Cross Aisles in a Rectangular Warehouse:  A Computational Study
Impact of Cross Aisles in a Rectangular Warehouse: A Computational Study
 
Depolama Sistemleri
Depolama SistemleriDepolama Sistemleri
Depolama Sistemleri
 
Optimizing Waste Collection In An Organized Industrial Region: A Case Study
Optimizing Waste Collection  In An Organized Industrial Region: A Case StudyOptimizing Waste Collection  In An Organized Industrial Region: A Case Study
Optimizing Waste Collection In An Organized Industrial Region: A Case Study
 
Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...
Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...
Design Requirements For a Tendon Rehabilitation Robot: Results From a Survey ...
 
Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...
 
Teaching Warehousing Concepts through Interactive Animations and 3-D Models
Teaching Warehousing Concepts through Interactive Animations  and 3-D ModelsTeaching Warehousing Concepts through Interactive Animations  and 3-D Models
Teaching Warehousing Concepts through Interactive Animations and 3-D Models
 
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
 
Text Mining with RapidMiner
Text Mining with RapidMinerText Mining with RapidMiner
Text Mining with RapidMiner
 
Re-mining Positive and Negative Association Mining Results
Re-mining Positive and Negative Association Mining ResultsRe-mining Positive and Negative Association Mining Results
Re-mining Positive and Negative Association Mining Results
 

Semelhante a Application Of Local Search Methods For Solving A Quadratic Assignment Problem: A Case Study

Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Gurdal Ertek
 
Artificial intelligence modelling of process parameters#Vimalsamsingh
Artificial intelligence modelling of process parameters#VimalsamsinghArtificial intelligence modelling of process parameters#Vimalsamsingh
Artificial intelligence modelling of process parameters#VimalsamsinghR Vimal Samsingh
 
ADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERS
ADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERSADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERS
ADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERSijctcm
 
Pretzel: optimized Machine Learning framework for low-latency and high throug...
Pretzel: optimized Machine Learning framework for low-latency and high throug...Pretzel: optimized Machine Learning framework for low-latency and high throug...
Pretzel: optimized Machine Learning framework for low-latency and high throug...NECST Lab @ Politecnico di Milano
 
Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers
Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers
Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers ijctcm
 
IRJET- Optimization of RC Column and Footings using Genetic Algorithm
IRJET- Optimization of RC Column and Footings using Genetic AlgorithmIRJET- Optimization of RC Column and Footings using Genetic Algorithm
IRJET- Optimization of RC Column and Footings using Genetic AlgorithmIRJET Journal
 
Cost optimization of reinforced concrete chimney
Cost optimization of reinforced concrete chimneyCost optimization of reinforced concrete chimney
Cost optimization of reinforced concrete chimneyIAEME Publication
 
IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...
IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...
IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...IRJET Journal
 
Design of Machining Fixture for Support Bracket
Design of Machining Fixture for Support BracketDesign of Machining Fixture for Support Bracket
Design of Machining Fixture for Support Bracketpaperpublications3
 
A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...
A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...
A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...Hassan Eliwa
 
Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...
Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...
Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...Mechanical Engineering Assignment Help
 
Optimization of Design Parameters for Crane Hook Using Finite Element Analysis
Optimization of Design Parameters for Crane Hook Using Finite Element AnalysisOptimization of Design Parameters for Crane Hook Using Finite Element Analysis
Optimization of Design Parameters for Crane Hook Using Finite Element AnalysisIJRTEMJOURNAL
 
Application of the Cutting Stock Problem to a Construction Company: A Case Study
Application of the Cutting Stock Problem to a Construction Company: A Case StudyApplication of the Cutting Stock Problem to a Construction Company: A Case Study
Application of the Cutting Stock Problem to a Construction Company: A Case Studyertekg
 
Using deal.ii for Gunmetal Casting Analysis.
Using deal.ii for Gunmetal Casting Analysis.Using deal.ii for Gunmetal Casting Analysis.
Using deal.ii for Gunmetal Casting Analysis.PratikSuryawanshi13
 
CFD analysis of commercial vehicle
CFD analysis of commercial vehicleCFD analysis of commercial vehicle
CFD analysis of commercial vehicleShih Cheng Tung
 

Semelhante a Application Of Local Search Methods For Solving A Quadratic Assignment Problem: A Case Study (20)

Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...
 
Artificial intelligence modelling of process parameters#Vimalsamsingh
Artificial intelligence modelling of process parameters#VimalsamsinghArtificial intelligence modelling of process parameters#Vimalsamsingh
Artificial intelligence modelling of process parameters#Vimalsamsingh
 
ADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERS
ADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERSADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERS
ADVANCED ALGORITHMS FOR ETCHING SIMULATION OF 3D MEMS-TUNABLE LASERS
 
Pretzel: optimized Machine Learning framework for low-latency and high throug...
Pretzel: optimized Machine Learning framework for low-latency and high throug...Pretzel: optimized Machine Learning framework for low-latency and high throug...
Pretzel: optimized Machine Learning framework for low-latency and high throug...
 
Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers
Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers
Advanced Algorithms for Etching Simulation of 3d Mems-Tunable Lasers
 
IRJET- Optimization of RC Column and Footings using Genetic Algorithm
IRJET- Optimization of RC Column and Footings using Genetic AlgorithmIRJET- Optimization of RC Column and Footings using Genetic Algorithm
IRJET- Optimization of RC Column and Footings using Genetic Algorithm
 
Cost optimization of reinforced concrete chimney
Cost optimization of reinforced concrete chimneyCost optimization of reinforced concrete chimney
Cost optimization of reinforced concrete chimney
 
IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...
IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...
IRJET- Comparative Study of Super-Structure Stability Systems for Economic Co...
 
Design of Machining Fixture for Support Bracket
Design of Machining Fixture for Support BracketDesign of Machining Fixture for Support Bracket
Design of Machining Fixture for Support Bracket
 
A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...
A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...
A Computer Model for Selecting Equipment for Earthmoving Operations Using Sim...
 
Cad cam
Cad camCad cam
Cad cam
 
Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...
Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...
Microelectromechanical Assignment Help.com_Microelectromechanical Assignment ...
 
Af36188193
Af36188193Af36188193
Af36188193
 
Optimization of Design Parameters for Crane Hook Using Finite Element Analysis
Optimization of Design Parameters for Crane Hook Using Finite Element AnalysisOptimization of Design Parameters for Crane Hook Using Finite Element Analysis
Optimization of Design Parameters for Crane Hook Using Finite Element Analysis
 
N046018089
N046018089N046018089
N046018089
 
Application of the Cutting Stock Problem to a Construction Company: A Case Study
Application of the Cutting Stock Problem to a Construction Company: A Case StudyApplication of the Cutting Stock Problem to a Construction Company: A Case Study
Application of the Cutting Stock Problem to a Construction Company: A Case Study
 
Fk259991002
Fk259991002Fk259991002
Fk259991002
 
Using deal.ii for Gunmetal Casting Analysis.
Using deal.ii for Gunmetal Casting Analysis.Using deal.ii for Gunmetal Casting Analysis.
Using deal.ii for Gunmetal Casting Analysis.
 
CFD analysis of commercial vehicle
CFD analysis of commercial vehicleCFD analysis of commercial vehicle
CFD analysis of commercial vehicle
 
42 2
42 242 2
42 2
 

Mais de ertekg

Optimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJOptimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJertekg
 
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...ertekg
 
Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...ertekg
 
Modelling the supply chain perception gaps
Modelling the supply chain perception gapsModelling the supply chain perception gaps
Modelling the supply chain perception gapsertekg
 
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining AnalysisRisk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysisertekg
 
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...ertekg
 
Supplier and Buyer Driven Channels in a Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a  Two-Stage Supply ChainSupplier and Buyer Driven Channels in a  Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a Two-Stage Supply Chainertekg
 
A Tutorial On Crossdocking
A Tutorial On CrossdockingA Tutorial On Crossdocking
A Tutorial On Crossdockingertekg
 
Demonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive AnimationsDemonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive Animationsertekg
 
A Framework for Visualizing Association Mining Results
A Framework for Visualizing  Association Mining ResultsA Framework for Visualizing  Association Mining Results
A Framework for Visualizing Association Mining Resultsertekg
 
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...ertekg
 
An Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain ProblemsAn Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain Problemsertekg
 
Dairy Logistics: A Tutorial
Dairy Logistics: A TutorialDairy Logistics: A Tutorial
Dairy Logistics: A Tutorialertekg
 
A Taxonomy Of Logistics Innovations
A Taxonomy Of Logistics InnovationsA Taxonomy Of Logistics Innovations
A Taxonomy Of Logistics Innovationsertekg
 
Innovation in Product Form And Function: Customer Perception Of Their Value
Innovation in Product Form And Function: Customer Perception Of Their ValueInnovation in Product Form And Function: Customer Perception Of Their Value
Innovation in Product Form And Function: Customer Perception Of Their Valueertekg
 
Developing Competitive Strategies in Higher Education through Visual Data Mining
Developing Competitive Strategies in Higher Education through Visual Data MiningDeveloping Competitive Strategies in Higher Education through Visual Data Mining
Developing Competitive Strategies in Higher Education through Visual Data Miningertekg
 
Kimya Sanayinde Su Tasarrufu İçin Karar Destek Sistemi
Kimya Sanayinde Su Tasarrufu İçin Karar  Destek Sistemi Kimya Sanayinde Su Tasarrufu İçin Karar  Destek Sistemi
Kimya Sanayinde Su Tasarrufu İçin Karar Destek Sistemi ertekg
 

Mais de ertekg (17)

Optimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJOptimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJ
 
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
 
Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...
 
Modelling the supply chain perception gaps
Modelling the supply chain perception gapsModelling the supply chain perception gaps
Modelling the supply chain perception gaps
 
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining AnalysisRisk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysis
 
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
 
Supplier and Buyer Driven Channels in a Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a  Two-Stage Supply ChainSupplier and Buyer Driven Channels in a  Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a Two-Stage Supply Chain
 
A Tutorial On Crossdocking
A Tutorial On CrossdockingA Tutorial On Crossdocking
A Tutorial On Crossdocking
 
Demonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive AnimationsDemonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive Animations
 
A Framework for Visualizing Association Mining Results
A Framework for Visualizing  Association Mining ResultsA Framework for Visualizing  Association Mining Results
A Framework for Visualizing Association Mining Results
 
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
 
An Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain ProblemsAn Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain Problems
 
Dairy Logistics: A Tutorial
Dairy Logistics: A TutorialDairy Logistics: A Tutorial
Dairy Logistics: A Tutorial
 
A Taxonomy Of Logistics Innovations
A Taxonomy Of Logistics InnovationsA Taxonomy Of Logistics Innovations
A Taxonomy Of Logistics Innovations
 
Innovation in Product Form And Function: Customer Perception Of Their Value
Innovation in Product Form And Function: Customer Perception Of Their ValueInnovation in Product Form And Function: Customer Perception Of Their Value
Innovation in Product Form And Function: Customer Perception Of Their Value
 
Developing Competitive Strategies in Higher Education through Visual Data Mining
Developing Competitive Strategies in Higher Education through Visual Data MiningDeveloping Competitive Strategies in Higher Education through Visual Data Mining
Developing Competitive Strategies in Higher Education through Visual Data Mining
 
Kimya Sanayinde Su Tasarrufu İçin Karar Destek Sistemi
Kimya Sanayinde Su Tasarrufu İçin Karar  Destek Sistemi Kimya Sanayinde Su Tasarrufu İçin Karar  Destek Sistemi
Kimya Sanayinde Su Tasarrufu İçin Karar Destek Sistemi
 

Último

0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...rajveerescorts2022
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Neil Kimberley
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...anilsa9823
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLSeo
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...lizamodels9
 
Call Girls in Gomti Nagar - 7388211116 - With room Service
Call Girls in Gomti Nagar - 7388211116  - With room ServiceCall Girls in Gomti Nagar - 7388211116  - With room Service
Call Girls in Gomti Nagar - 7388211116 - With room Servicediscovermytutordmt
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear RegressionRavindra Nath Shukla
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Grateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfGrateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfPaul Menig
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxWorkforce Group
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...Aggregage
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...amitlee9823
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...Any kyc Account
 
Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communicationskarancommunications
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with CultureSeta Wicaksana
 
7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...Paul Menig
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Dave Litwiller
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Roland Driesen
 

Último (20)

0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
 
Call Girls in Gomti Nagar - 7388211116 - With room Service
Call Girls in Gomti Nagar - 7388211116  - With room ServiceCall Girls in Gomti Nagar - 7388211116  - With room Service
Call Girls in Gomti Nagar - 7388211116 - With room Service
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear Regression
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Grateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfGrateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdf
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
 
Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communications
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with Culture
 
7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 

Application Of Local Search Methods For Solving A Quadratic Assignment Problem: A Case Study

  • 1. Ertek, G., Aksu, B., Birbil, S. E., İkikat, M. C., Yıldırmaz, C (2005). "Application of local search methods for solving a quadratic assignment problem: A case study", Proceedings of Computers and Industrial Engineering Conference, 2005 Note: This is the final draft version of this paper. Please cite this paper (or this final draft) as above. You can download this final draft from http://research.sabanciuniv.edu. APPLICATION OF LOCAL SEARCH METHODS FOR SOLVING A QUADRATIC ASSIGNMENT PROBLEM: A CASE STUDY Gürdal Ertek, Burak Aksu, Ş. İlker Birbil, Murat Cihan İkikat, Can Yıldırmaz Sabancı University Orhanlı, Tuzla 34956 Istanbul, Turkey 1
  • 2. Abstract: This paper discusses the design and application of local search methods to a real-life application at a steel cord manufacturing plant. The case study involves a layout problem that can be represented as a Quadratic Assignment Problem (QAP). Due to the nature of the manufacturing process, certain machinery need to be allocated in close proximity to each other. This issue is incorporated into the objective function through assigning high penalty costs to the unfavorable allocations. QAP belongs to one of the most difficult class of combinatorial optimization problems, and is not solvable to optimality as the number of facilities increases. We implement the well-known local search methods, 2-opt, 3-opt and tabu search. We compare the solution performances of the methods to the results obtained from the NEOS server, which provides free access to many optimization solvers on the internet. Keywords: quadratic assignment problem, steel cord manufacturing, local search methods, tabu search, NEOS online server Introduction This paper discusses local search heuristics applied to a real-world problem from industry. The problem is the determination of the layout of a steel-cord manufacturing factory. Steel cord is typically used as the main reinforcement material in manufacturing steel radial tires. It strengthens the tire to provide fuel savings, long mileage, safety and comfort. The steel cord manufacturing goes through continuous processes, where wire semi-products are stored on discrete inventory units, namely “spools” (see Figure 1). The literature on steel cord manufacturing is not extensive, since this is a very specialized type of manufacturing, and the systems required are produced and installed by only a handful of companies in the world. We refer the interested readers to the following three studies: Thomas et al. (2002) report improvement of operations in a steel cord manufacturing company using simulation. Mercankaya (2003) develops an optimization-based decision support system for steel cord manufacturing. Türkseven and Ertek (2003) explain how the quality and the productivity were improved in steel cord manufacturing through custom-built simulation software. 2
  • 3. Their objective is to determine the optimal spool lengths under certain constraints on the spool lengths. Figure 1. Spool on which wire is wound In steel cord manufacturing incoming raw material, the “steel rod wire”, is thinned by dry and wet drawing into “filaments” that are used in successive bunching operations to construct the “steel cord” final products (see Figure 2). The focus of our research is the second phase of production, which starts with wet wire drawing and ends with spiraling. The first phase of the production is carried out by machines that are fixed to their locations. The chances of moving these machines are next to none, since considerable time and resources would be required to make such movements. The second phase of production, on the other hand, is carried out by machines that can be relocated. The only important issue with the second phase of production is that certain machinery, which we refer to as machine types MT01, MT02 and MT03, have to be located in the neighborhood of a lubricant pool. These machines carry out wet drawing of steel cord, and use the lubricant liquid, which is supplied to the machines by an underground pipeline system. We reflected this location constraint in the mathematical model that we developed by assigning a high flow volume between these machine types and the lubricant cells. 3
  • 4. Figure 2. Production processes in steel cord manufacturing The Mathematical Model We assume that the flow from an area of machine type i to another area of machine type j is equally distributed (see Figure 3). Notice that this is a simplification of the actual process because after the machines are assigned to the locations, one would send as much flow as possible from a type i machine to the closest type j machine. We elaborate this issue in the summary and future research section. 4
  • 5. Figure 3. Equal distribution of flow from an area of machine type i to another area of machine type j In the subsequent discussion, the acronyms LBR and WH stand for the lubricant pool and the warehouse, respectively. Before we give the mathematical model, let us define the sets, the parameters and the decision variables. Sets M: the set of machine types, M = {MT01, MT02, …, MT12, LBR, WH} A: the set of areas, A = {1, 2, …, 69} Parameters 5
  • 6. Fij: the total flow from an area dedicated to machine type i to an area dedicated to machine type j; i, j  M Dkl: the rectilinear distance between area k and l; k, l  A Ki: the number of areas assigned to machine type i Decision variables xik = 1 if area k is assigned to machine type i; 0 otherwise. The overall mathematical model then becomes min   F D iM kA jM lA ij x x jl kl ik s.t. x ik  Ki , i  M (1) kA x ik  1, k  A (2) iM xik  1, (i, k )  {(i, k ) : i  LBR, k  1,2,  ,6} (3) xik  1, (i, k )  {(i, k ) : i  WH, k  49,54,59,64,69} (4) xik binary i  M and k  A. (5) The constraint set (1) ensures that the number of areas allocated to each machine type is equal to Ki; the required number of areas for that machine type. The constraint set (2) ensures that each area is assigned to exactly one machine type. To fix the areas assigned to the lubricant and to the warehouse, we introduce the constraint sets (3) and (4), respectively. The last set of constraints, (5) states that the decision variables xik should be binary. 6
  • 7. As we mentioned above, to locate the machine types MT01, MT02 and MT03 close to the lubricant pool, we have assigned a large flow value between these machine types and the lubricant pool. We also assigned high values for flows from machines that directly feed into the warehouse (namely, machines MT04, MT06, MT07, MT11, MT12). Clearly, assigning unnecessarily large values for specific flows creates sudden jumps in the objective function values. Therefore, a special care should be taken to set this value. In our study, we have used the following calculation Fij  F ji  F for i  LBR and j {MT01, MT02, MT03}, Fij  F ji  F for i  WH and j {MT04, MT06, MT07, MT11, MT12}, where F  iM {LBR ,WH }  jM {LBR ,WH } Fij . The presented mathematical model is very similar to the Quadratic Assignment Problem (QAP) problem. Thus, some of the solution methods developed for QAP can be applied to solve the presented problem after minor modifications. Among these solution methods, local search heuristics such; as swapping, tabu search, and so on, are frequently used because these methods are relatively easy to implement. Moreover, due to the moderate size of the presented problem, standard solvers may also provide a solution. This is particularly important for practitioners, who prefer to use software packages rather than creating their own tools. We next present our efforts to solve the problem with an easily accessible online solver as well as with some local search methods. Solution Approaches GAMS Model The first solution approach that we applied was to build a mathematical model using the GAMS software (http://www.gams.com). Since the model required specification of the rectilinear distances 7
  • 8. between areas we had to implement a “model generator” program to generate the model automatically based on input data. This implementation was carried out using the Java programming language. The model generator reads in the machine types, the number of areas assigned to each machine type (Ki), and the flows from each area of machine type i to each area of machine type j (i, j  M). The model generator then generates the GAMS model file which is submitted to NEOS server which provides free access to many optimization solvers on the internet (http://www- neos.mcs.anl.gov/neos/). We used the submit client (written in Java) to submit the GAMS model to NEOS server. While submitting we selected the Solvers menu, the menu item “Mixed Integer Nonlinearly Constrained Optimization”, and finally the menu item “SBB [GAMS Input]”. The solution found by the online solver has objective function value of 6,953,483 and is given in Figure 4. The visualization is done by a Java program. In this solution MT01, MT02, and MT03 are assigned to areas close to the lubricant (LBR). 2-opt and 3-opt We implemented 2-opt and 3-opt algorithms for the problem again using Java. The 2-opt algorithm performs an exchange among the machine types of two areas, and keeps the solution if the objective function (OF) value has improved (decreased). 3-opt performs an exchange among machine types of three areas, and keeps the solution if the OF value has improved (decreased). We fed the solution in Figure 4 as the starting solution for both 2-opt and 3-opt. The algorithms terminated without finding any improved solutions. Tabu search Finally we employed the well-known tabu search heuristic developed by Taillard (1991) to our problem. The C++ code for the heuristic is available at the following address: http://ina.eivd.ch/collaborateurs/etd/. Since the objective function value in our problem has to involve the additional costs resulting from the large flows to the lubricant cells, we have slightly modified the algorithm proposed by Taillard (1991). We selected 5 different starting solutions, and 8
  • 9. observed that all these solutions had the objective function value of 6,953,483, which is identical to the objective function value found by NEOS server. This shows that tabu search heuristic is very much applicable for the problem that we have presented. Figure 4. The layout suggested by both NEOS and local search heuristics Summary and Future Research We have presented a slightly-modified QAP model and discussed the solution approaches that we employed to solve the model. For our problem, where the real-world data came from a steel cord manufacturer, the solution (in Figure 4) suggested by a well-known tabu search heuristic was the same as the solution found by the NEOS server. We have also observed that 2-opt and 3-opt heuristics could not improve on this solution. This solution thus can be considered a pseudo-optimal solution. There is an interesting research problem that can be defined based on the problem described here. In the problem that we presented we have assumed that the flow from each area of machine type i to each area of machine type i is equal. There is no guarantee that this is the best policy. Indeed, the decision of how to assign the flows from each area of machine type i to each area of machine type j is 9
  • 10. an embedded network flow problem. For example, the optimal flows for the system in Figure 3 can be as given in Figure 5. Given a layout, each flow assignment is a possible solution, and given a flow assignment each layout choice is a possible solution. Thus, there is a need to develop algorithms that can solve these two interrelated problems simultaneously. Birbil et al. (2005) discuss this problem. Figure 5. A possible assignment of flows between areas of two machine types References Birbil, Ş. İ., Ertek, G., Frenk, J. B. G., Still, G., & Zhang, S. (2005). Simultaneous solution of assignment and network flow problems. Working paper. Istanbul, Turkey: Sabancı University. Mercankaya, B. (2003). Sales forecasting and production planning of BEKSA in the context of supply chain management. LFI report. Istanbul, Turkey: Sabancı University. 10
  • 11. Taillard, E. (1991). Robust taboo search for the QAP. Parallel Computing, 17, 443-455. Thomas, J., Todi, J., & Paranjpe, A. (2002). Optimization of operations in a steel wire manufacturing company. In E. Yücesan, C. H. Chen, J. L. Snowdon, and J. M. Charnes: Proceedings of 2002 Winter Simulation Conference (pp. 1151-1156). Piscataway, New Jersey: Institute of Electrical and Electronics Engineers. Türkseven, C. H., & Ertek, G. (2003). Simulation modeling for quality and productivity in steel-cord manufacturing. In S. Chick, P. J. Sanchez, D. Ferrin, & D. J. Morrice: Proceedings of 2003 Winter Simulation Conference (pp. 1225-1229). Piscataway, New Jersey: Institute of Electrical and Electronics Engineers. 11