A HYBRID APPROACH FOR THE NESTING PROBLEM: CASE STUDY ON A TEXTILE INDUSTRY
|
|
|
- Shanna O’Neal’
- 10 years ago
- Views:
Transcription
1 A HYBRID APPROACH FOR THE NESTING PROBLEM: CASE STUDY ON A TEXTILE INDUSTRY Bonfim Amaro Júnior Universidade de Fortaleza Av. Washington Soares, 1321-Edson Queiroz, Fortaleza - CE, [email protected] Plácido Rogério Pinheiro Universidade de Fortaleza Av. Washington Soares, 1321-Edson Queiroz, Fortaleza - CE, [email protected] Rommel Dias Saraiva Universidade de Fortaleza Av. Washington Soares, 1321-Edson Queiroz, Fortaleza - CE, [email protected] Pedro Caliope Pinheiro Universidade de Fortaleza Av. Washington Soares, 1321-Edson Queiroz, Fortaleza - CE, [email protected] RESUMO O objetivo deste trabalho é descrever uma metodologia híbrida que combina um Algoritmo Genético e uma heurística Bottom-Left Greedy para resolver o Problema de Posicionamento de Formas Irregulares bidimensional. A ferramenta No-Fit Polygon é aplicada para obtenção de ótimos locais. Além disso, um algoritmo de encolhimento é incorporado à meta-heurística para identificar soluções de melhor qualidade. Experimentos computacionais realizados em uma biblioteca de testes, bem como um estudo de caso em uma indústria têxtil, são realizados objetivando testar as potencialidades por trás da nova abordagem. PALAVARAS CHAVE. Corte e Empacotamento, Problema de Posicionamento de Formas Irregulares, Métodos Híbridos. ABSTRACT The aim of this paper is to describe a hybrid methodology that combines a Genetic Algorithm and a Bottom-Left Greedy procedure for solving the two-dimensional Nesting Problem. The No-Fit Polygon construct is applied for obtaining local optima. Furthermore, a shrinking algorithm is incorporated to the meta-heuristic engine to identify good quality solutions. Computational experiments performed on standard benchmark problems, as well as a practical case study developed in a textile industry, are also reported and discussed here in a manner as to testify the potentialities behind the novel approach. KEYWORDS. Cutting and Packing. Nesting Problem. Hybrid Methods. 1396
2 1. Introduction Roughly speaking, the Nesting Problem is a classic cutting and packing problem which consists of finding the most efficient layout for cutting irregular shapes out of a given strip with minimum waste material. More specifically, given the dimensions of the rectangular strip - a constant width and an infinite length - and the pieces which need to be cut, the problem can be defined as to find such an arrangement of pieces (with no overlapping) that minimizes the length of the rectangular strip. According to the typology of Wäscher et al. (2007), this is a typical case of Open Dimension Problem and it is of particular interest to industries with mass-production (e.g. garment, glass, steel, textile, wood, etc.), where the reduction of production cost is one of the major issues in an ever more competitive world. Other Nesting Problem variations exist, but in the following the focus is on the strip-packing variant. Although easily understood, revealing a simplicity that contrasts directly with the real complexity, the Nesting Problem has received some attention in the domains of Computer Science and Operations Research due to NP-Hardness, as noted by Nielsen and Odgaard (2003). Therefore, there do not exist deterministic polynomial-time algorithms to solve this problem. Several approaches have been proposed for the resolution of the Nesting Problem. Solution techniques range from simple placement heuristics that convert a sequence of pieces into a feasible layout to local optimization techniques involving mathematical programming models. In this paper, we propose a novel approach based on a kind of hybridization between a modified Genetic Algorithm and a Bottom-Left Greedy procedure for tackling the Nesting Problem. A shrinking algorithm is also incorporated to the meta-heuristic engine in order to improve the arrangement of pieces. To have better analysis, the remainder of this paper is organized as follows. In Sect. 2, we present some state-of-the-art methodologies dedicated to the two-dimensional Nesting Problem; Sect. 3 conveys fundamental concepts related to the proposed methodology, which is introduced in Sect. 4; discussions on computational results on benchmark problem instances and a case study on a textile industry are given in Sect. 5; Finally, in Sect. 6, we draw conclusions regarding the quality of the solutions provided by our algorithm and make some considerations concerning future development. 2. Literature Review Problems involving irregular pieces comprise the most difficult class of packing problems. According to Dowsland and Dowsland (1995), whatever the constraints or secondary objectives, there are basically three approaches to find suitable layouts. The pieces may be considered one at a time and packed onto the stock sheet according to a sorting criteria, or may be nested either singly or in groups into a set of enclosing polygons which are then packed onto the stock sheet, or an initial allocation is improved iteratively. A Genetic Algorithm for placing polygons on a rectangular board is proposed by Jakobs (1996) and also implemented by Amaro Jr et al. (2013, 2013). The ordered list of pieces forms the chromosome of each individual, which is decoded by the Bottom-Left placement rule. A shrinking algorithm improves partial solutions by shifting polygons closer to each other. Oliveira et al. (2000) implemented a constructive algorithm called Técnicas de Optimização para o Posicionamento de Figuras Irregulares (TOPOS). The solution grows from a floating origin and both the next piece to be packed and its position are defined by two heuristics named, respectively, local search and initial sort. Different objective functions are proposed to evaluate and compare partial solutions. Burke et al. (2006) introduced a new method for implementing the Bottom-Left-Fill packing algorithm which allows shapes that incorporate circular arcs and holes to be nested. Hill Climbing and Tabu Search methods find efficient nesting sequences for packing shapes. A few authors have adopted mathematical programming techniques for solving one of the following sub-problems: Overlap Minimization Problem, whose objective is to 1397
3 place all polygons into a container with given width and length so that the total amount of overlap between polygons is made as small as possible; Compaction Problem, which requires a feasible layout and relocates many polygons simultaneously so as to minimize the strip length; and Separation Problem, which takes an infeasible layout and performs a set of translations of the polygons which eliminates all overlaps and has the minimum total translation. Gomes and Oliveira (2006), for instance, hybridized Simulated Annealing and Linear Programming. Firstly, an initial layout is obtained by the Bottom-Left Greedy placement heuristic, being each piece selected according to a random weighted length criterion. The Simulated Annealing algorithm guides the search over the solution space, where each neighborhood structure handles Linear Programming models, which are a compaction algorithm (see Fig. 1) and a separation algorithm. An extended local search algorithm based on Nonlinear Programming is conceived by Leung et al. (2012). The algorithm starts with a feasible layout and its length is saved as the best length. Then, a new layout is achieved by randomly swapping two polygons in the current solution. Within a time limit, the strip length is reduced and a local search method solves Overlap Minimization Problems. If the new placement is feasible, the best solution is updated and its length is further reduced to find even better solutions. Otherwise, the strip length is increased and a local search is invoked, which is guided by Tabu Search techniques in order to escape from local minima. A compaction algorithm is used to improve the results. Figure 1. Compaction example By other means, a successful approach that combines a local search method with a Guided Local Search to deal with two- and three-dimensional Nesting Problems is proposed Egeblad et al. (2007). An initial strip length is found by a fast placement heuristic (e.g. Bottom-Left). By reducing this value, overlap situations occur, which are removed by a local search that may apply one of the following four changes: horizontal translation; vertical translation; rotation; or flipping. The Guided Local Search meta-heuristic is adopted to escape from local minima. Finally, in a recent paper, Bennell and Song (2010) modified the TOPOS placement heuristic presented by Oliveira et al. (2000) and applied it to a Beam Search tree, which represents the placement order of the pieces onto the stock sheet. Each node in the search tree corresponds to a partial solution, which means that partial solutions can be generated in parallel. Some additional important related works were produced by Albano and Sapuppo (1980) and Imamichi et al. (2009). 3. Related Concepts In order to explain our proposed methodology, we need to describe essential concepts related to its behavior, which are Genetic Algorithm, Bottom-Left Greedy heuristic and No-Fit Polygon. 3.1 Genetic Algorithm Introduced by Holland (1975) and perfected by De Jong (1975) and Goldberg (1989), Genetic Algorithm is a search heuristic that mimics the process of natural evolution. 1398
4 This meta-heuristic is routinely used to generate useful solutions to optimization and search problems and belongs to the larger class of evolutionary algorithms, which generate solutions to optimization problems using techniques inspired by natural evolution. An implementation of Genetic Algorithm begins with a population of (typically random) n chromosomes, which are evaluated and associated with a particular reproduction rate in such a way that those chromosomes which represent a better solution to the target problem are given more chances to reproduce than those chromosomes which are poorer solutions. The quality of a solution is defined with respect to the current population. Then the crossover and mutation mechanisms are applied with some probability T CROSS and T MUT, previously defined, to the chosen chromosomes. Only the fittest individuals take part in the next iteration. Once a new population is generated, the stopping condition of the meta-heuristic is checked. If the Genetic Algorithm is not terminated, it starts working with a new set of chromosomes. Due to the flexibility and intelligent search, which explain why Genetic Algorithm can efficiently cope with hard optimization problems, a significant amount of research has investigated its performance in the field of irregular cutting, where we can mention the studies provided Fujita et al. (1993), who hybridized it with a local minimization algorithm; and Burke and Kendall (1999), who chose the concept of convex hull to place polygons. In our methodology, a modified Genetic Algorithm dictates the order in which polygons are cut by the placement policy described below. 3.2 Bottom-Left Greedy Heuristic A popular constructive algorithm to any two-dimensional cutting or packing problem aims to order the pieces and allocate them at feasible positions to a rectangular object, more precisely into its lowest possible location and then closest to its left without overlapping with any placed item, as illustrated by Fig. 2. This process, known as Bottom- Left Greedy heuristic, was introduced by Baker et al. (1980) for packing an arbitrary collection of rectangular pieces into a rectangular bin so as to minimize the height achieved by any piece. The advantages of this type of approach are its speed and simplicity, when compared with more sophisticated methods that may be able to produce solutions of higher quality. Figure 2. Bottom-Left Greedy procedure for an input piece In the case of two-dimensional cutting, the papers yielded by Hopper and Turton (1999), Burke et al. (2006) and Gomes and Oliveira (2006), for instance, considered placement algorithms based on the Bottom-Left Greedy rule and here the aforementioned heuristic was also chosen as placement policy. 3.3 No-Fit Polygon As pointed by Burke et al. (2007), the No-Fit Polygon is a powerful data structure used for fast and efficient handling of geometry in cutting and packing problems involving 1399
5 irregular shapes. The idea behind this trigonometric technique firstly described by Art (1966) as shape envelop come as follows: Given two polygons, A (the fixed piece) and B (the orbital piece), and a reference point on B called R B, the No-Fit Polygon of A in relation to B, denoted NFP AB, is the set of points traced by R B when B slides around the contour of A without overlapping, as displayed in Fig. 3. Three situations may arise with respect to the interaction between both shapes. If polygon B is positioned so that its reference point is inside NFP AB, then it overlaps with polygon A; if the reference point is on the boundary of NFP AB, then polygon B touches polygon A; finally, if the reference point is outside of NFP AB, then polygons A and B do not overlap or touch. So, the interior of the computed NFP AB represents all intersecting positions of A and B, and the boundary represents all touching positions. Unlike what occurs in some applications reported in the literature, where authors usually adopt the concept of No-Fit Polygon for detecting whether polygon B overlaps polygon A, in this work this geometric tool is combined with the Bottom-Left Greedy heuristic in order to achieve local optima. Figure 3. No-Fit Polygon generated by polygons A and B For our implementation, the construction of No-Fit Polygon was performed by using the Minkowski sum, whose concept involves two arbitrary point sets A and B. The Minkowski sum is obtained by adding each point in A to each point in B, i.e. the set: A B = {a + b : a A, b B}. Simple vector algebra can be used to show that A -B, defined as the Minkowski difference of A and B, is equivalent to No-Fit Polygon produced by both shapes. Since we follow the convention that polygons have counter-clockwise orientation then -B is simply B with clockwise orientation. Some useful algorithms for building the No-Fit Polygon have been recently produced Bennell et al. (2001), Burke et al. (2007) and Zhang et al. (2009). 4. Proposed Methodology Our hybrid methodology prescribes the integration of the distinct components described in Sect. 3. On what concerns the Genetic Algorithm, whose control parameters and calibration are set out in Sect. 5, each individual is encoded by an integer chromosome that is represented as a placement vector chrom(i), (i = 1,, m), which determines the cutting sequence of the m polygons. For each gene chrom(i), characterized by a polygon of certain type t i, there is an associated rotation variant r i. The length required to cut all input pieces is assigned as fitness value of the corresponding individual. Revealed these details, the steps followed by all chromosomes of the current population of the Genetic Algorithm are presented below. Step 1: As seen in Fig. 4, polygon chrom(i) is placed within the rectangular object by the Bottom-Left Greedy rule. Set i i + 1; 1400
6 Figure 4. Allocation of the first piece Step 2: According to the No-Fit Polygon construct, polygon chrom(i) is placed on a vertex of polygon chrom(i-1) such that the length of the rectangular object does not increase or is minimized, as presented in Fig. 5. In the case of multiple positions, it is considered the leftmost one; Figure 5. Best position computed by No-Fit Polygon Step 3: The Bottom-Left Greedy rule is applied to polygon chrom(i), as illustrated by Fig. 6; Figure 6. Final location of pieces Step 4: Termination test. If i m, set i i + 1 and go to Step 2; Step 5: Final layout. A shrinking algorithm is configured as Genetic Algorithm operator, working in each generation on the two fittest individuals (i.e. the layouts with the shorter lengths). Considering the No-Fit Polygon technique, this task is characterized by collecting a piece located in the rightmost position of the layout and attempting to place it on a vertex of a polygon situated in the leftmost position in such a way that the length of the rectangular strip is decreased. Then, in a second moment the Bottom-Left Greedy routine is applied to the translated shape. The technique is clarified in Fig
7 Figure 7. Shrinking heuristic 5. Computational Experiments A series of experiments were carried out on a desktop machine with a 3.60 GHz Intel i5 CPU and 4GB of RAM. The Genetic Algorithm was implemented in Java and configured with Roulette Wheel Selection; Uniform Order-Based Crossover, whose application has recently achieved promising results in a particular cutting and packing problem in Saraiva and Pinheiro (2012); and Swap Mutation. After preliminary experiments, we set the parameters discussed in Sect. 3.1 as follows: n = 400 individuals, T CROSS = 0.9 and T MUT = 0.2. Concerning the maximum number of generations and the limit on the execution time values, they were set as 200 and 6 hours, respectively. To evaluate the potentialities behind the proposed methodology, we conducted a series of experiments on benchmark problems available on the EURO Special Interest Group on Cutting and Packing (ESICUP) ( ), which involved five data sets: DIGHE1 and DIGHE2 are jigsaw puzzles with known optimum taken from Dighe and Jakiela (1996); JAKOBS1 and JAKOBS2 are artificial data sets taken from Jakobs (1996); and TROUSERS is an approximation of a real instance taken from the garment industry and it was firstly presented Oliveira et al. (2000). Some additional descriptions of the instances are shown in Table 1, whereas Table 2 provides the best results achieved by 10 runs of the hybrid methodology. In this table, for each data set, Length, Utilization and Time denote, respectively: the best length among those produced by all runs; the utilization percentage of the rectangular object of the best solution value; and the time elapsed from the beginning of the run until the best solution found. Table 1. Data sets characteristics Data set Number of different pieces Total number of pieces Orientations (degrees) DIGHE DIGHE JAKOBS JAKOBS TROUSERS , 180 Table 2. Computational results Data set Length Utilization (%) Time (seconds) DIGHE DIGHE JAKOBS JAKOBS TROUSERS
8 In Table 3, we present a comparison of the best results achieved by some state-ofthe-art methodologies to solve the Nesting Problem, where are included SAHA by Gomes and Oliveira (2006), BLF by Burke et al. (2006), 2DNest by Egeblad et al. (2007) and BS by Bennell and Song (2010). Our proposed methodology is referred to as HM. Table 3. Comparative analysis Data set SAHA BLF 2DNest BS HM DIGHE DIGHE JAKOBS JAKOBS TROUSERS To sum up, with regard to the utilization percentage of the rectangular object, it can be stated that the HM has presented satisfactory results. Taking as reference the scores achieved by BLF, the proposed methodology presents better solutions in most of cases. Furthermore, even without applying the same rotation variants allowed by other researches (90 incremental), the results show that HM proved to be very competitive when compared with the other approaches. We strongly believe that equivalent or better results can be found if we allow more rotations in a future extension of the work. Fig. 8 shows the convergence to the best solution found during the search of the Genetic Algorithm for TROUSERS problem instance, and Fig. 9 displays its best cutting configuration. Figure 8. Dynamics of the genetic algorithm evolutionary process: a step-by-step improvement Figure 9. Best solution found for TROUSERS instance 1403
9 5.1 Case Study The hybrid methodology has also been applied in the ambit of a large textile industry. This particular industrial unit prints soccer team logos on rectangular strips and then performs the cutting of these items for embroidering on caps, coats, shirts, shorts and socks. The width of the rectangular strip is 210 and points of the soccer logos are acquired as shown in picture below. All data sets, whose pieces configuration are depicted in Fig. 10, can be obtained in this link Figure 10. Obtainment of polygon points. Results for the case study are displayed in Table 4. Moreover, in Fig , it is illustrated the layout produced by HM related to the application. Table 4. Results obtained for the practical case studied Data set Length Utilization (%) Time (seconds) Soccer Logos Teste Soccer Logo CRF Soccer Logo SPFC Figure 11. Cutting pattern produced by HM for Soccer Logos instance Teste
10 Figure 12. Cutting pattern produced by HM for Soccer Logos instance CRF. Figure 13. Cutting pattern produced by HM for Soccer Logos instance SPFC. 6. Conclusion and Future Work In this initial study, we have introduced a novel hybrid methodology for coping with the Nesting Problem, which is based on a particular type of hybridization between a meta-heuristic search method and a well-known placement policy (i.e. Genetic Algorithm and Bottom-Left Greedy). Overall, the optimization performance achieved with the new methodology has been promising, taking as reference the results achieved by other approaches and taking into account the inherent difficulties associated with this particular cutting and packing problem. As future work, we plan to investigate the application of more rotation variants to the polygons of the analyzed data sets and examine the performance of the proposed methodology in more instances available on ESICUP website. Another possibility is to investigate the application of linear programming models for compacting layouts, which have been used by Li and Milenkovic (1995), Stoyan et al. (1996) and Bennell and Dowsland (2001). Acknowledgements The first author is thankful to Coordination for the Improvement of Higher - Level or Education - Personnel (CAPES) and the second and third authors are thankful to National Counsel of Technological and Scientific Development (CNPq). References Albano, A. and Sapuppo, G. (1980), Optimal allocation of two-dimensional irregular shapes using heuristic search methods. IEEE Transactions on Systems, Man and Cybernetics, 10(5), Amaro Jr, B., Pinheiro, P.R. and Saraiva, R.D. (2013), A hybrid methodology for tackling the irregular strip packing problem. In Proc. 11th IFAC Workshop on Intelligent Manufacturing Systems (IMS 13), To appear. 1405
11 Amaro Jr, B., Pinheiro, P.R. and Saraiva, R.D. (2013), Tackling the Irregular Strip Packing Problem by Hybridizing Genetic Algorithm and Bottom-Left Heuristic. In Proc IEEE Congress on Evolutionary Computation (CEC 2013), To appear. Art, R.C. An approach to the two-dimensional irregular cutting stock problem. Technical Report , IBM Cambridge Centre, Baker, B.S., Coman, E.G. and Rivest, R.L. (1980), Orthogonal packing in two dimensions. SIAM Journal on Computing, 9(4), Bennell, J.A. and Dowsland, K.A. (2001), Hybridising tabu search with optimisation techniques for irregular stock cutting. Management Science, 47(8), Bennell, J.A., Dowsland, K.A. and Dowsland, W.B. (2001), The irregular cutting-stock problem - a new procedure for deriving the no-fit polygon. Computers & Operations Research, 28(3), Bennell, J.A. and Song, X. (2010), A beam search implementation for the irregular shape packing problem. Journal of Heuristics, 16(2), Burke, E. and Kendall, G. (1999), Applying evolutionary algorithms and the no fit polygon to the nesting problem. In Proc International Conference on Artificial Intelligence, 1, Burke, E., Hellier, R., Kendall, G. and Whitwell, G. (2006), A new bottom-left-fill heuristic algorithm for the two-dimensional irregular packing problem. Operations Research, 54(3), Burke, E., Hellier, R.S.R., Kendall, G. and Whitwell, G. (2007), Complete and robust no-fit polygon generation for the irregular stock cutting problem. European Journal of Operational Research, 179(1), De Jong, K.A. An analysis of the behavior of a class of genetic adaptive systems. Ph.D. thesis, University of Michigan, Ann Arbor, USA, Dighe, R. and Jakiela, M.J. (1996), Solving pattern nesting problems with genetic algorithms employing task decomposition and contact detection. Evolutionary Computation, 3(3), Dowsland, K.A. and Dowsland, W.B. (1995), Solution approaches to irregular nesting problems. European Journal of Operational Research, 84(3), Egeblad, J., Nielsen, B.K. and Odgaard, A. (2007), Fast neighborhood search for two- and three-dimensional nesting problems. European Journal of Operational Research, 183(3), Fujita, K., Akagji, S. and Kirokawa, N. (1993), Hybrid approach for optimal nesting using a genetic algorithm and a local minimisation algorithm. In Proc. 19th Annual ASME Design Automation Conference, 1, Goldberg, D.E. Genetic Algorithms in Search, Optimization, and Machine Learning. Addison-Wesley, Reading, MA, Gomes, A.M. and Oliveira, J.F. (2006), Solving irregular strip packing problems by hybridising simulated annealing and linear programming. European Journal of Operational Research, 171(3), Holland, J.H. Adaptation in natural and artificial systems: an introductory analysis with Applications to biology, control, and artificial intelligence. University of Michigan Press, Oxford, England, Hopper, E. and Turton, B. (1999), A genetic algorithm for a 2d industrial packing problem. Computers & Industrial Engineering, 37(1-2), Imamichi, T., Yagiura, M. and Nagamochi, H. (2009), An iterated local search algorithm based on nonlinear programming for the irregular strip packing problem. Discrete Optimization, 6(4), Jakobs, S. (1996), On genetic algorithms for the packing of polygons. European Journal of Operational Research, 88(1),
12 Leung, S.C.H., Lin, Y. and Zhang, D. (2012), Extended local search algorithm based on nonlinear programming for two-dimensional irregular strip packing problem. Computers & Operations Research, 39(3), Li, Z. and Milenkovic, V. (1995), Compaction and separation algorithms for non-convex polygons and their applications. European Journal of Operational Research, 84(3), Nielsen, B.K. and Odgaard, A. Fast neighborhood search for the nesting problem. Technical Report 03/03, Department of Computer Science, University of Copenhagen, Oliveira, J.F., Gomes, A.M. and Ferreira, J.S. (2000), TOPOS - a new constructive algorithm for nesting problems. OR Spektrum, 22(2), Saraiva, R.D. and Pinheiro, P.R. (2012), A novel application of crossover operator to a hybrid optimization framework: Investigation into cutting problems. In Proc IEEE Congress on Evolutionary Computation, Stoyan, Y.G., Novozhilova, M.V. and Kartashov, A.V. (1996), Mathematical model and method of searching for a local extremum for the non-convex oriented polygons allocation problem. European Journal of Operational Research, 92(1), Wäscher, G., Hauβner, H. and Schumann, H. (2007), An improved typology of cutting and packing problems. European Journal of Operational Research, 183(3), Zhang, D.F., Chen, J.C., Liu, Y.K. and Chen, H.W. (2009), Discrete no-fit polygon, a simple structure for the 2-d irregular packing problem. Journal of Software, 20(6),
MATHEMATICAL ENGINEERING TECHNICAL REPORTS. The Best-fit Heuristic for the Rectangular Strip Packing Problem: An Efficient Implementation
MATHEMATICAL ENGINEERING TECHNICAL REPORTS The Best-fit Heuristic for the Rectangular Strip Packing Problem: An Efficient Implementation Shinji IMAHORI, Mutsunori YAGIURA METR 2007 53 September 2007 DEPARTMENT
A Genetic Algorithm Approach for Solving a Flexible Job Shop Scheduling Problem
A Genetic Algorithm Approach for Solving a Flexible Job Shop Scheduling Problem Sayedmohammadreza Vaghefinezhad 1, Kuan Yew Wong 2 1 Department of Manufacturing & Industrial Engineering, Faculty of Mechanical
A Robust Method for Solving Transcendental Equations
www.ijcsi.org 413 A Robust Method for Solving Transcendental Equations Md. Golam Moazzam, Amita Chakraborty and Md. Al-Amin Bhuiyan Department of Computer Science and Engineering, Jahangirnagar University,
International Journal of Software and Web Sciences (IJSWS) www.iasir.net
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International
Memory Allocation Technique for Segregated Free List Based on Genetic Algorithm
Journal of Al-Nahrain University Vol.15 (2), June, 2012, pp.161-168 Science Memory Allocation Technique for Segregated Free List Based on Genetic Algorithm Manal F. Younis Computer Department, College
Incremental Move for Strip-Packing
Incremental Move for Strip-Packing Bertrand Neveu, Gilles Trombettoni INRIA Sophia-Antipolis, University of Nice-Sophia, ENPC, Projet COPRIN, France {neveu, trombe}@sophia.inria.fr Ignacio Araya Department
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE Subodha Kumar University of Washington [email protected] Varghese S. Jacob University of Texas at Dallas [email protected]
Genetic Algorithm Based Interconnection Network Topology Optimization Analysis
Genetic Algorithm Based Interconnection Network Topology Optimization Analysis 1 WANG Peng, 2 Wang XueFei, 3 Wu YaMing 1,3 College of Information Engineering, Suihua University, Suihua Heilongjiang, 152061
Alpha Cut based Novel Selection for Genetic Algorithm
Alpha Cut based Novel for Genetic Algorithm Rakesh Kumar Professor Girdhar Gopal Research Scholar Rajesh Kumar Assistant Professor ABSTRACT Genetic algorithm (GA) has several genetic operators that can
GA as a Data Optimization Tool for Predictive Analytics
GA as a Data Optimization Tool for Predictive Analytics Chandra.J 1, Dr.Nachamai.M 2,Dr.Anitha.S.Pillai 3 1Assistant Professor, Department of computer Science, Christ University, Bangalore,India, [email protected]
Numerical Research on Distributed Genetic Algorithm with Redundant
Numerical Research on Distributed Genetic Algorithm with Redundant Binary Number 1 Sayori Seto, 2 Akinori Kanasugi 1,2 Graduate School of Engineering, Tokyo Denki University, Japan [email protected],
A Hybrid Tabu Search Method for Assembly Line Balancing
Proceedings of the 7th WSEAS International Conference on Simulation, Modelling and Optimization, Beijing, China, September 15-17, 2007 443 A Hybrid Tabu Search Method for Assembly Line Balancing SUPAPORN
A Brief Study of the Nurse Scheduling Problem (NSP)
A Brief Study of the Nurse Scheduling Problem (NSP) Lizzy Augustine, Morgan Faer, Andreas Kavountzis, Reema Patel Submitted Tuesday December 15, 2009 0. Introduction and Background Our interest in the
HYBRID INTELLIGENT SUITE FOR DECISION SUPPORT IN SUGARCANE HARVEST
HYBRID INTELLIGENT SUITE FOR DECISION SUPPORT IN SUGARCANE HARVEST FLÁVIO ROSENDO DA SILVA OLIVEIRA 1 DIOGO FERREIRA PACHECO 2 FERNANDO BUARQUE DE LIMA NETO 3 ABSTRACT: This paper presents a hybrid approach
A Non-Linear Schema Theorem for Genetic Algorithms
A Non-Linear Schema Theorem for Genetic Algorithms William A Greene Computer Science Department University of New Orleans New Orleans, LA 70148 bill@csunoedu 504-280-6755 Abstract We generalize Holland
Genetic algorithms for changing environments
Genetic algorithms for changing environments John J. Grefenstette Navy Center for Applied Research in Artificial Intelligence, Naval Research Laboratory, Washington, DC 375, USA [email protected] Abstract
Original Article Efficient Genetic Algorithm on Linear Programming Problem for Fittest Chromosomes
International Archive of Applied Sciences and Technology Volume 3 [2] June 2012: 47-57 ISSN: 0976-4828 Society of Education, India Website: www.soeagra.com/iaast/iaast.htm Original Article Efficient Genetic
A Study of Crossover Operators for Genetic Algorithm and Proposal of a New Crossover Operator to Solve Open Shop Scheduling Problem
American Journal of Industrial and Business Management, 2016, 6, 774-789 Published Online June 2016 in SciRes. http://www.scirp.org/journal/ajibm http://dx.doi.org/10.4236/ajibm.2016.66071 A Study of Crossover
ISSN: 2319-5967 ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 3, May 2013
Transistor Level Fault Finding in VLSI Circuits using Genetic Algorithm Lalit A. Patel, Sarman K. Hadia CSPIT, CHARUSAT, Changa., CSPIT, CHARUSAT, Changa Abstract This paper presents, genetic based algorithm
Estimation of the COCOMO Model Parameters Using Genetic Algorithms for NASA Software Projects
Journal of Computer Science 2 (2): 118-123, 2006 ISSN 1549-3636 2006 Science Publications Estimation of the COCOMO Model Parameters Using Genetic Algorithms for NASA Software Projects Alaa F. Sheta Computers
Solving the Vehicle Routing Problem with Genetic Algorithms
Solving the Vehicle Routing Problem with Genetic Algorithms Áslaug Sóley Bjarnadóttir April 2004 Informatics and Mathematical Modelling, IMM Technical University of Denmark, DTU Printed by IMM, DTU 3 Preface
Evolutionary SAT Solver (ESS)
Ninth LACCEI Latin American and Caribbean Conference (LACCEI 2011), Engineering for a Smart Planet, Innovation, Information Technology and Computational Tools for Sustainable Development, August 3-5, 2011,
A Binary Model on the Basis of Imperialist Competitive Algorithm in Order to Solve the Problem of Knapsack 1-0
212 International Conference on System Engineering and Modeling (ICSEM 212) IPCSIT vol. 34 (212) (212) IACSIT Press, Singapore A Binary Model on the Basis of Imperialist Competitive Algorithm in Order
An ant colony optimization for single-machine weighted tardiness scheduling with sequence-dependent setups
Proceedings of the 6th WSEAS International Conference on Simulation, Modelling and Optimization, Lisbon, Portugal, September 22-24, 2006 19 An ant colony optimization for single-machine weighted tardiness
Solving Simultaneous Equations and Matrices
Solving Simultaneous Equations and Matrices The following represents a systematic investigation for the steps used to solve two simultaneous linear equations in two unknowns. The motivation for considering
Genetic Algorithms and Sudoku
Genetic Algorithms and Sudoku Dr. John M. Weiss Department of Mathematics and Computer Science South Dakota School of Mines and Technology (SDSM&T) Rapid City, SD 57701-3995 [email protected] MICS 2009
AN OPTIMAL STRATEGY FOR YARD TRUCKS MANAGEMENT IN HONG KONG CONTAINER TERMINALS
AN OPTIMAL STRATEGY FOR YARD TRUCKS MANAGEMENT IN HONG KONG CONTAINER TERMINALS Z. X. Wang Department of Industrial and Systems Engineering, The Hong Kong Polytechnic University, Hong Kong E-mail: [email protected]
ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION
1 ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION B. Mikó PhD, Z-Form Tool Manufacturing and Application Ltd H-1082. Budapest, Asztalos S. u 4. Tel: (1) 477 1016, e-mail: [email protected]
Wireless Sensor Networks Coverage Optimization based on Improved AFSA Algorithm
, pp. 99-108 http://dx.doi.org/10.1457/ijfgcn.015.8.1.11 Wireless Sensor Networks Coverage Optimization based on Improved AFSA Algorithm Wang DaWei and Wang Changliang Zhejiang Industry Polytechnic College
BMOA: Binary Magnetic Optimization Algorithm
International Journal of Machine Learning and Computing Vol. 2 No. 3 June 22 BMOA: Binary Magnetic Optimization Algorithm SeyedAli Mirjalili and Siti Zaiton Mohd Hashim Abstract Recently the behavior of
A hybrid Approach of Genetic Algorithm and Particle Swarm Technique to Software Test Case Generation
A hybrid Approach of Genetic Algorithm and Particle Swarm Technique to Software Test Case Generation Abhishek Singh Department of Information Technology Amity School of Engineering and Technology Amity
Research Article Service Composition Optimization Using Differential Evolution and Opposition-based Learning
Research Journal of Applied Sciences, Engineering and Technology 11(2): 229-234, 2015 ISSN: 2040-7459; e-issn: 2040-7467 2015 Maxwell Scientific Publication Corp. Submitted: May 20, 2015 Accepted: June
Architectural Design for Space Layout by Genetic Algorithms
Architectural Design for Space Layout by Genetic Algorithms Özer Ciftcioglu, Sanja Durmisevic and I. Sevil Sariyildiz Delft University of Technology, Faculty of Architecture Building Technology, 2628 CR
Branch-and-Price Approach to the Vehicle Routing Problem with Time Windows
TECHNISCHE UNIVERSITEIT EINDHOVEN Branch-and-Price Approach to the Vehicle Routing Problem with Time Windows Lloyd A. Fasting May 2014 Supervisors: dr. M. Firat dr.ir. M.A.A. Boon J. van Twist MSc. Contents
An optimisation framework for determination of capacity in railway networks
CASPT 2015 An optimisation framework for determination of capacity in railway networks Lars Wittrup Jensen Abstract Within the railway industry, high quality estimates on railway capacity is crucial information,
A Review And Evaluations Of Shortest Path Algorithms
A Review And Evaluations Of Shortest Path Algorithms Kairanbay Magzhan, Hajar Mat Jani Abstract: Nowadays, in computer networks, the routing is based on the shortest path problem. This will help in minimizing
A Multi-Objective Performance Evaluation in Grid Task Scheduling using Evolutionary Algorithms
A Multi-Objective Performance Evaluation in Grid Task Scheduling using Evolutionary Algorithms MIGUEL CAMELO, YEZID DONOSO, HAROLD CASTRO Systems and Computer Engineering Department Universidad de los
A Fast Computational Genetic Algorithm for Economic Load Dispatch
A Fast Computational Genetic Algorithm for Economic Load Dispatch M.Sailaja Kumari 1, M.Sydulu 2 Email: 1 [email protected] 1, 2 Department of Electrical Engineering National Institute of Technology,
Lecture 4 DISCRETE SUBGROUPS OF THE ISOMETRY GROUP OF THE PLANE AND TILINGS
1 Lecture 4 DISCRETE SUBGROUPS OF THE ISOMETRY GROUP OF THE PLANE AND TILINGS This lecture, just as the previous one, deals with a classification of objects, the original interest in which was perhaps
Solving Three-objective Optimization Problems Using Evolutionary Dynamic Weighted Aggregation: Results and Analysis
Solving Three-objective Optimization Problems Using Evolutionary Dynamic Weighted Aggregation: Results and Analysis Abstract. In this paper, evolutionary dynamic weighted aggregation methods are generalized
An ACO Approach to Solve a Variant of TSP
An ACO Approach to Solve a Variant of TSP Bharat V. Chawda, Nitesh M. Sureja Abstract This study is an investigation on the application of Ant Colony Optimization to a variant of TSP. This paper presents
A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster
, pp.11-20 http://dx.doi.org/10.14257/ ijgdc.2014.7.2.02 A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster Kehe Wu 1, Long Chen 2, Shichao Ye 2 and Yi Li 2 1 Beijing
Fuzzy Genetic Heuristic for University Course Timetable Problem
Int. J. Advance. Soft Comput. Appl., Vol. 2, No. 1, March 2010 ISSN 2074-8523; Copyright ICSRS Publication, 2010 www.i-csrs.org Fuzzy Genetic Heuristic for University Course Timetable Problem Arindam Chaudhuri
Volume 3, Issue 2, February 2015 International Journal of Advance Research in Computer Science and Management Studies
Volume 3, Issue 2, February 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com
The Problem of Scheduling Technicians and Interventions in a Telecommunications Company
The Problem of Scheduling Technicians and Interventions in a Telecommunications Company Sérgio Garcia Panzo Dongala November 2008 Abstract In 2007 the challenge organized by the French Society of Operational
STUDY OF PROJECT SCHEDULING AND RESOURCE ALLOCATION USING ANT COLONY OPTIMIZATION 1
STUDY OF PROJECT SCHEDULING AND RESOURCE ALLOCATION USING ANT COLONY OPTIMIZATION 1 Prajakta Joglekar, 2 Pallavi Jaiswal, 3 Vandana Jagtap Maharashtra Institute of Technology, Pune Email: 1 [email protected],
A Parallel Processor for Distributed Genetic Algorithm with Redundant Binary Number
A Parallel Processor for Distributed Genetic Algorithm with Redundant Binary Number 1 Tomohiro KAMIMURA, 2 Akinori KANASUGI 1 Department of Electronics, Tokyo Denki University, [email protected]
Voronoi Treemaps in D3
Voronoi Treemaps in D3 Peter Henry University of Washington [email protected] Paul Vines University of Washington [email protected] ABSTRACT Voronoi treemaps are an alternative to traditional rectangular
Evolutionary Detection of Rules for Text Categorization. Application to Spam Filtering
Advances in Intelligent Systems and Technologies Proceedings ECIT2004 - Third European Conference on Intelligent Systems and Technologies Iasi, Romania, July 21-23, 2004 Evolutionary Detection of Rules
A Service Revenue-oriented Task Scheduling Model of Cloud Computing
Journal of Information & Computational Science 10:10 (2013) 3153 3161 July 1, 2013 Available at http://www.joics.com A Service Revenue-oriented Task Scheduling Model of Cloud Computing Jianguang Deng a,b,,
2014-2015 The Master s Degree with Thesis Course Descriptions in Industrial Engineering
2014-2015 The Master s Degree with Thesis Course Descriptions in Industrial Engineering Compulsory Courses IENG540 Optimization Models and Algorithms In the course important deterministic optimization
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM Md. Shahjahan Kabir 1, Kh. Mohaimenul Kabir 2 and Dr. Rabiul Islam 3 1 Dept. of CSE, Dhaka International University, Dhaka, Bangladesh
A Comparison of Genotype Representations to Acquire Stock Trading Strategy Using Genetic Algorithms
2009 International Conference on Adaptive and Intelligent Systems A Comparison of Genotype Representations to Acquire Stock Trading Strategy Using Genetic Algorithms Kazuhiro Matsui Dept. of Computer Science
HYBRID GENETIC ALGORITHM PARAMETER EFFECTS FOR OPTIMIZATION OF CONSTRUCTION RESOURCE ALLOCATION PROBLEM. Jin-Lee KIM 1, M. ASCE
1560 HYBRID GENETIC ALGORITHM PARAMETER EFFECTS FOR OPTIMIZATION OF CONSTRUCTION RESOURCE ALLOCATION PROBLEM Jin-Lee KIM 1, M. ASCE 1 Assistant Professor, Department of Civil Engineering and Construction
STRUCTURAL OPTIMIZATION OF REINFORCED PANELS USING CATIA V5
STRUCTURAL OPTIMIZATION OF REINFORCED PANELS USING CATIA V5 Rafael Thiago Luiz Ferreira Instituto Tecnológico de Aeronáutica - Pça. Marechal Eduardo Gomes, 50 - CEP: 12228-900 - São José dos Campos/ São
The enhancement of the operating speed of the algorithm of adaptive compression of binary bitmap images
The enhancement of the operating speed of the algorithm of adaptive compression of binary bitmap images Borusyak A.V. Research Institute of Applied Mathematics and Cybernetics Lobachevsky Nizhni Novgorod
International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS) www.iasir.net
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Emerging Technologies in Computational
Genetic Algorithm Evolution of Cellular Automata Rules for Complex Binary Sequence Prediction
Brill Academic Publishers P.O. Box 9000, 2300 PA Leiden, The Netherlands Lecture Series on Computer and Computational Sciences Volume 1, 2005, pp. 1-6 Genetic Algorithm Evolution of Cellular Automata Rules
Genetic algorithm evolved agent-based equity trading using Technical Analysis and the Capital Asset Pricing Model
Genetic algorithm evolved agent-based equity trading using Technical Analysis and the Capital Asset Pricing Model Cyril Schoreels and Jonathan M. Garibaldi Automated Scheduling, Optimisation and Planning
Parallel Computing for Option Pricing Based on the Backward Stochastic Differential Equation
Parallel Computing for Option Pricing Based on the Backward Stochastic Differential Equation Ying Peng, Bin Gong, Hui Liu, and Yanxin Zhang School of Computer Science and Technology, Shandong University,
An Improved ACO Algorithm for Multicast Routing
An Improved ACO Algorithm for Multicast Routing Ziqiang Wang and Dexian Zhang School of Information Science and Engineering, Henan University of Technology, Zheng Zhou 450052,China [email protected]
New Modifications of Selection Operator in Genetic Algorithms for the Traveling Salesman Problem
New Modifications of Selection Operator in Genetic Algorithms for the Traveling Salesman Problem Radovic, Marija; and Milutinovic, Veljko Abstract One of the algorithms used for solving Traveling Salesman
An improved Evolutionary Algorithm to sequence operations on an ASRS warehouse
An improved Evolutionary Algorithm to sequence operations on an ASRS warehouse José A. Oliveira, João Ferreira, Guilherme A.B. Pereira and Luis S. Dias Centre ALGORITMI, University of Minho, Portugal [email protected],
Projects - Neural and Evolutionary Computing
Projects - Neural and Evolutionary Computing 2014-2015 I. Application oriented topics 1. Task scheduling in distributed systems. The aim is to assign a set of (independent or correlated) tasks to some
Introduction To Genetic Algorithms
1 Introduction To Genetic Algorithms Dr. Rajib Kumar Bhattacharjya Department of Civil Engineering IIT Guwahati Email: [email protected] References 2 D. E. Goldberg, Genetic Algorithm In Search, Optimization
Modified Version of Roulette Selection for Evolution Algorithms - the Fan Selection
Modified Version of Roulette Selection for Evolution Algorithms - the Fan Selection Adam S lowik, Micha l Bia lko Department of Electronic, Technical University of Koszalin, ul. Śniadeckich 2, 75-453 Koszalin,
Genetic algorithms for solving portfolio allocation models based on relative-entropy, mean and variance
Journal of Scientific Research and Development 2 (12): 7-12, 2015 Available online at www.jsrad.org ISSN 1115-7569 2015 JSRAD Genetic algorithms for solving portfolio allocation models based on relative-entropy,
A Tool for Generating Partition Schedules of Multiprocessor Systems
A Tool for Generating Partition Schedules of Multiprocessor Systems Hans-Joachim Goltz and Norbert Pieth Fraunhofer FIRST, Berlin, Germany {hans-joachim.goltz,nobert.pieth}@first.fraunhofer.de Abstract.
Clustering & Visualization
Chapter 5 Clustering & Visualization Clustering in high-dimensional databases is an important problem and there are a number of different clustering paradigms which are applicable to high-dimensional data.
Algebra 1 2008. Academic Content Standards Grade Eight and Grade Nine Ohio. Grade Eight. Number, Number Sense and Operations Standard
Academic Content Standards Grade Eight and Grade Nine Ohio Algebra 1 2008 Grade Eight STANDARDS Number, Number Sense and Operations Standard Number and Number Systems 1. Use scientific notation to express
Vector storage and access; algorithms in GIS. This is lecture 6
Vector storage and access; algorithms in GIS This is lecture 6 Vector data storage and access Vectors are built from points, line and areas. (x,y) Surface: (x,y,z) Vector data access Access to vector
The Applications of Genetic Algorithms in Stock Market Data Mining Optimisation
The Applications of Genetic Algorithms in Stock Market Data Mining Optimisation Li Lin, Longbing Cao, Jiaqi Wang, Chengqi Zhang Faculty of Information Technology, University of Technology, Sydney, NSW
Available online at www.sciencedirect.com. ScienceDirect. Procedia CIRP 40 (2016 ) 390 395
Available online at www.sciencedirect.com ScienceDirect Procedia CIRP 40 (2016 ) 390 395 13th Global Conference on Sustainable Manufacturing - Decoupling Growth from Resource Use A Heuristic Approach to
Effect of Using Neural Networks in GA-Based School Timetabling
Effect of Using Neural Networks in GA-Based School Timetabling JANIS ZUTERS Department of Computer Science University of Latvia Raina bulv. 19, Riga, LV-1050 LATVIA [email protected] Abstract: - The school
Solving Geometric Problems with the Rotating Calipers *
Solving Geometric Problems with the Rotating Calipers * Godfried Toussaint School of Computer Science McGill University Montreal, Quebec, Canada ABSTRACT Shamos [1] recently showed that the diameter of
Ronald Graham: Laying the Foundations of Online Optimization
Documenta Math. 239 Ronald Graham: Laying the Foundations of Online Optimization Susanne Albers Abstract. This chapter highlights fundamental contributions made by Ron Graham in the area of online optimization.
IMPLEMENTATION OF MS ACCESS SOFTWARE FOR CASING-CLASS MANUFACTURING FEATURES SAVING
constructional data, database, casing-class part, MS Access Arkadiusz GOLA *, Łukasz SOBASZEK ** IMPLEMENTATION OF MS ACCESS SOFTWARE FOR CASING-CLASS MANUFACTURING FEATURES SAVING Abstract Manufacturing
Pre-Algebra 2008. Academic Content Standards Grade Eight Ohio. Number, Number Sense and Operations Standard. Number and Number Systems
Academic Content Standards Grade Eight Ohio Pre-Algebra 2008 STANDARDS Number, Number Sense and Operations Standard Number and Number Systems 1. Use scientific notation to express large numbers and small
Empirically Identifying the Best Genetic Algorithm for Covering Array Generation
Empirically Identifying the Best Genetic Algorithm for Covering Array Generation Liang Yalan 1, Changhai Nie 1, Jonathan M. Kauffman 2, Gregory M. Kapfhammer 2, Hareton Leung 3 1 Department of Computer
The Application of Bayesian Optimization and Classifier Systems in Nurse Scheduling
The Application of Bayesian Optimization and Classifier Systems in Nurse Scheduling Proceedings of the 8th International Conference on Parallel Problem Solving from Nature (PPSN VIII), LNCS 3242, pp 581-590,
Comparison of algorithms for automated university scheduling
Comparison of algorithms for automated university scheduling Hugo Sandelius Simon Forssell Degree Project in Computer Science, DD143X Supervisor: Pawel Herman Examiner: Örjan Ekeberg CSC, KTH April 29,
Container loading by GRASP
Container loading by GRASP Hugo Duque Caldeira - ISEP; INESC Porto José Soeiro Ferreira - FEUP; INESC Porto Container loading by GRASP 1. Introduction 2. Problem 3.Resolution methods 4.Application of GRASP
SINGLE-STAGE MULTI-PRODUCT PRODUCTION AND INVENTORY SYSTEMS: AN ITERATIVE ALGORITHM BASED ON DYNAMIC SCHEDULING AND FIXED PITCH PRODUCTION
SIGLE-STAGE MULTI-PRODUCT PRODUCTIO AD IVETORY SYSTEMS: A ITERATIVE ALGORITHM BASED O DYAMIC SCHEDULIG AD FIXED PITCH PRODUCTIO Euclydes da Cunha eto ational Institute of Technology Rio de Janeiro, RJ
Evaluation of Different Task Scheduling Policies in Multi-Core Systems with Reconfigurable Hardware
Evaluation of Different Task Scheduling Policies in Multi-Core Systems with Reconfigurable Hardware Mahyar Shahsavari, Zaid Al-Ars, Koen Bertels,1, Computer Engineering Group, Software & Computer Technology
Web Service Selection using Particle Swarm Optimization and Genetic Algorithms
Web Service Selection using Particle Swarm Optimization and Genetic Algorithms Simone A. Ludwig Department of Computer Science North Dakota State University Fargo, ND, USA [email protected] Thomas
Improving the Performance of a Computer-Controlled Player in a Maze Chase Game using Evolutionary Programming on a Finite-State Machine
Improving the Performance of a Computer-Controlled Player in a Maze Chase Game using Evolutionary Programming on a Finite-State Machine Maximiliano Miranda and Federico Peinado Departamento de Ingeniería
Evaluation of Crossover Operator Performance in Genetic Algorithms With Binary Representation
Evaluation of Crossover Operator Performance in Genetic Algorithms with Binary Representation Stjepan Picek, Marin Golub, and Domagoj Jakobovic Faculty of Electrical Engineering and Computing, Unska 3,
Common Core Unit Summary Grades 6 to 8
Common Core Unit Summary Grades 6 to 8 Grade 8: Unit 1: Congruence and Similarity- 8G1-8G5 rotations reflections and translations,( RRT=congruence) understand congruence of 2 d figures after RRT Dilations
How To Develop Software
Software Engineering Prof. N.L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture-4 Overview of Phases (Part - II) We studied the problem definition phase, with which
Genetic Algorithm Performance with Different Selection Strategies in Solving TSP
Proceedings of the World Congress on Engineering Vol II WCE, July 6-8,, London, U.K. Genetic Algorithm Performance with Different Selection Strategies in Solving TSP Noraini Mohd Razali, John Geraghty
TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE...
Starting Guide TABLE OF CONTENTS INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... 7 ADVANCE CONCRETE USER INTERFACE... 7 Other important
Designing Difficult Office Space Allocation Problem Instances with Mathematical Programming
Designing Difficult Office Space Allocation Problem Instances with Mathematical Programming Özgür Ülker and Dario Landa-Silva Automated Scheduling, Optimisation and Planning (ASAP) Research Group School
Current Standard: Mathematical Concepts and Applications Shape, Space, and Measurement- Primary
Shape, Space, and Measurement- Primary A student shall apply concepts of shape, space, and measurement to solve problems involving two- and three-dimensional shapes by demonstrating an understanding of:
EVOLUTIONARY ALGORITHMS FOR FIRE AND RESCUE SERVICE DECISION MAKING
EVOLUTIONARY ALGORITHMS FOR FIRE AND RESCUE SERVICE DECISION MAKING Dr. Alastair Clarke, Prof. John Miles and Prof. Yacine Rezgui Cardiff School of Engineering, Cardiff, UK ABSTRACT Determining high performance
Inventory Analysis Using Genetic Algorithm In Supply Chain Management
Inventory Analysis Using Genetic Algorithm In Supply Chain Management Leena Thakur M.E. Information Technology Thakur College of Engg & Technology, Kandivali(E) Mumbai-101,India. Aaditya A. Desai M.E.
Shortest Inspection-Path. Queries in Simple Polygons
Shortest Inspection-Path Queries in Simple Polygons Christian Knauer, Günter Rote B 05-05 April 2005 Shortest Inspection-Path Queries in Simple Polygons Christian Knauer, Günter Rote Institut für Informatik,
