ArticlePDF Available

Abstract and Figures

The genetic algorithm (GA) is an optimization and search technique based on the principles of genetics and natural selection. A GA allows a population composed of many individuals to evolve under specified selection rules to a state that maximizes the "fitness" function. In that process, crossover operator plays an important role. To comprehend the GAs as a whole, it is necessary to understand the role of a crossover operator. Today, there are a number of different crossover operators that can be used in GAs. However, how to decide what operator to use for solving a problem? A number of test functions with various levels of difficulty has been selected as a test polygon for determine the performance of crossover operators. In this paper, a novel crossover operator called 'ring crossover' is proposed. In order to evaluate the efficiency and feasibility of the proposed operator, a comparison between the results of this study and results of different crossover operators used in GAs is made through a number of test functions with various levels of difficulty. Results of this study clearly show significant differences between the proposed operator and the other crossover operators.
Content may be subject to copyright.
A Novel Crossover Operator for Genetic Algorithms:
Ring Crossover
Yılmaz KAYA
1
Murat UYAR
2
Ramazan TEKĐN
3
1
Siirt University, Department of Computer Engineering, Siirt, Turkey, yilmazkaya1977@gmail.com
2
Siirt University, Department of Electric and Electronics Engineering, Siirt, Turkey, muratuyar1@gmail.com
3
Batman University, Department of Computer Engineering, Batman, Turkey, ramazan.tekin@batman.edu.tr
Abstract
The genetic algorithm (GA) is an optimization and
search technique based on the principles of genetics and
natural selection. A GA allows a population composed of many
individuals to evolve under specified selection rules to a state
that maximizes the “fitness” function. In that process,
crossover operator plays an important role. To comprehend
the GAs as a whole, it is necessary to understand the role of a
crossover operator. Today, there are a number of different
crossover operators that can be used in GAs. However, how to
decide what operator to use for solving a problem? A number
of test functions with various levels of difficulty has been
selected as a test polygon for determine the performance of
crossover operators.
In this paper, a novel crossover operator called ‘ring
crossover’ is proposed. In order to evaluate the efficiency and
feasibility of the proposed operator, a comparison between the
results of this study and results of different crossover operators
used in GAs is made through a number of test functions with
various levels of difficulty. Results of this study clearly show
significant differences between the proposed operator and the
other crossover operators.
Keywords : Genetic algorithm, crossover operator, ring crossover
I.
I
NTRODUCTION
Genetic algorithms (GAs) represent general-purpose
search and optimization technique based on evolutionary
ideas of natural selection and genetics. They simulate
natural processes based on principles of Lamarck and
Darwin. In 1975, Holland developed this idea in his book
“Adaptation in natural and artificial systems”. He described
how to apply the principles of natural evolution to
optimization problems and built the first GAs. Holland’s
theory has been further developed and now GAs stand up as
a powerful tool for solving search and optimization
problems. GAs are based on the principle of genetics and
evolution [1] . Today, there exists many variations on GAs
and term “genetic algorithm” is used to describe concepts
sometimes very far from Holland’s original idea [2]. The
two most commonly employed genetic search operators are
crossover and mutation. Crossover produces offspring by
recombining the information from two parents. Mutation
prevents convergence of the population by flipping a small
number of randomly selected bits to continuously introduce
variation. The driving force behind GAs is the unique
cooperation between selection, crossover and mutation
operator. A genetic operator is a process used in GAs to
maintain genetic diversity. The most widely used genetic
operators are recombination, crossover and mutation.
The main goal of this paper is to introduce a new
crossover operator called ring crossover (RC) and present
the performance of this crossover operator. The rest of this
paper is organized as follow. In section 2, definitions and
concepts of the different crossover operators are introduced.
In section 3, the proposed method in this study is given. In
section 4, a number of the functions widely used in
performance evaluation of GA operators are defined. In
section 5, the optimization results and performance
comparison of proposed method are shown. Finally,
conclusions are discussed in section 6.
II. C
ROSSOVER OPERATORS
The crossover operator is a genetic operator that combines
(mates) two chromosomes (parents) to produce a new
chromosome (offspring). The idea behind crossover is that
the new chromosome may be better than both of the parents
if it takes the best characteristics from each of the parents.
Crossover occurs during evolution according to a user-
definable crossover probability. For purpose of this work,
only crossover operators that operate on two parents and
have no self-adaptation properties will be considered.
A. Single Point Crossover
When performing crossover, both parental chromosomes
are split at a randomly determined crossover point.
Subsequently, a new child genotype is created by appending
the first part of the first parent with the second part of the
second parent [3, 4]. A single crossover point on both
parents' organism strings is selected. All data beyond that
point in either organism string is swapped between the two
parent organisms. Figure 1 shows the single point crossover
(SPC) process.
Figure 1. Single point crossover
B. Two Point Crossover
Apart from SPC, many different crossover algorithms
have been devised, often involving more than one cut point.
It should be noted that adding further crossover points
reduces the performance of the GA. The problem with
adding additional crossover points is that building blocks are
more likely to be disrupted. However, an advantage of
having more crossover points is that the problem space may
be searched more thoroughly. In two-point crossover (TPC),
two crossover points are chosen and the contents between
these points are exchanged between two mated parents [5, 6]
Figure 2. Two point crossover
In figure 2, the arrows indicate the crossover points.
Thus, the contents between these points are exchanged
between the parents to produce new children for mating in
the next generation.
C. Intermediate Crossover
Intermediate creates offsprings by a weighted average of
the parents. Intermediate crossover (IC) is controlled by a
single parameter Ratio:
offspring = parent1+rand*Ratio*(parent2 - parent1)
If Ratio is in the range [0,1] then the offsprings produced
are within the hypercube defined by the parents locations at
opposite vertices. Ratio can be a scalar or a vector of length
number of variables. If Ratio is a scalar, then all of the
offsprings will lie on the line between the parents. If Ratio is
a vector then children can be any point within the hypercube
[7].
D. Heuristic Crossover
In heuristic crossover (HC), heuristic returns an offspring
that lies on the line containing the two parents, a small
distance away from the parent with the better fitness value
in the direction away from the parent with the worse fitness
value. The default value of Ratio is 1.2. If parent1 and
parent2 are the parents, and parent1 has the better fitness
value, the function returns the child [7],
offspring = parent2 + Ratio * (parent1 - parent2)
E. Arithmetic Crossover
In arithmetic crossover (AC), arithmetic creates children
that are the weighted arithmetic mean of two parents.
Children are feasible with respect to linear constraints and
bounds. Alpha is random value between [0,1]. If parent1 and
parent2 are the parents, and parent1 has the better fitness
value, the function returns the child [7],
offspring =alpha*parent1 + (1-alpha)*parent2
III. P
ROPOSED CROSSOVER OPERATOR
:
RING CROSSOVER
The operator called ring crossover is consisted of four
steps. The steps of the proposed operator in this paper are
shown in figure 3. All of the steps in the algorithm are
discussed one by one.
Step-1: In this step, two parents such as parent1 and parent2
are considered for the crossover process, as shown in fig.
3(a).
Step-2: The chromosomes of parents are firstly combined
with a form of ring, as shown in fig. 3(b). Later, a random
cutting point is decided in any point of ring.
Step-3: The children are created with a random number
generated in any point of ring according to the length of the
combined two parental chromosomes. With reference to the
cutting point in step 2, while one of the children is created in
the clockwise direction, the other one is created in direction
of the anti-clockwise, as shown in fig. 3(c).
Step-4: In this step, swapping and reversing process is
performed in the RC operator, as shown in fig. 3(d). In
swapping process, a number of genes are swapped in
crossed parents. In reversion process, the remaining genes
are reversed in crossed parents. As the length of ring is
equal to the total length of both of parents and the children
are created according to a random point of ring, more
variety can be provided in possible number of children by
RC operator according to SPC and TPC operators.
Figure 3. Ring crossover
IV. T
EST FUNCTIONS
The proposed method must be tested by a number of the
functions widely used in performance evaluation of GA
operators such as crossover. Test functions used in this paper
have two important features: modality and separability.
Unimodal function is a function with only one global
optimum. Function is multimodal if it has two or more local
optima. Multimodal functions are more difficult to optimize
compared to unimodal functions [8].
A. Sphere Function
Sphere function is a test function proposed by De Jong. It
has been widely used in evaluation of genetic algorithms and
development of the theory of evolutionary strategies. Sphere
function is a simple, continuous and strongly convex function.
Sphere function is unimodal and additively separable.
Boundaries are set at [-5.12; 5.12]. Sphere function’s global
minimum is in point x=0 with value f(x)=0 [8,9]. The simplest
test function is De Jong’s function 1. It is continues, convex
and unimodal. This function is defined as shown below.
2
1
( )
D
i
i
f x x
=
=
(1)
This function is defined as F1 in paper.
B. Axis Parallel Hyper-Ellipsoid Function
This function is similar to Sphere function. It is also known
as weighted sphere model. It is also unimodal and additively
separable. Boundaries are set at [-5.12; 5.12]. Function’s
global minimum is in point x=0 with value f(x)=0 [8,9]. The
axis parallel hyper-ellipsoid is similar to De Jong's function 1.
It is also known as the weighted sphere model. Again, it is
continues, convex and unimodal. It is defined as shown below.
2
1
( )
D
i
i
f x ix
=
=
(2)
This function is defined as F2 in paper.
C. Rotated Hyper-Ellipsoid Function
This function represents an extension of the axis parallel
hyper-ellipsoid function. With respect to the coordinate axes,
this function produces rotated hyperellipsoids. It is continues,
convex and unimodal. Boundaries are set at [-65.536; 65.536].
Function’s global minimum is in point x=0 with value f(x)=0
[9]. An extension of the axis parallel hyper-ellipsoid is
Schwefel's function 1.2. With respect to the coordinate axes,
this function produces rotated hyper-ellipsoids. It is continues,
convex and unimodal. This function is defined as shown
below.
2
1 1
( )
D i
j
i j
f x x
= =
=
∑ ∑
(3)
This function is defined as F3 in paper.
D. Normalized Schwefel Function
The surface of Schwefel function is composed of a great
number of peaks and valleys. The function has a second best
minimum far from the global minimum where many search
algorithms are trapped. Moreover, the global minimum is near
the bounds of the domain. Schwefel’s function is deceptive in
that the global minimum is geometrically distant, over the
parameter space, from the next best local minimum. Schwefel
function is multimodal and additively separable. Boundaries
are set at [-500; 500]. Function’s global minimum is in point
x=420.968 with value f(x)=-418.9829 [8] . Schwefel's function
[Sch81] is deceptive in that the global minimum is
geometrically distant, over the parameter space, from the next
best local minima. Therefore, the search algorithms are
potentially prone to convergence in the wrong direction. It is
defined as shown below.
1
( ) sin( | |
D
i i
i
f x x x
=
= −
(4)
This function is defined as F4 in paper.
E. Generalized Rastrigin Function
Rastrigin function was constructed from Sphere adding a
cosine modular term. Its contour is made up of a large number
of local minima whose value increases with the distance to the
global minimum. Thus, the test function is highly multimodal.
However, the location of the local minima’s are regularly
distributed. Rastrigin function is additively separable.
Boundaries are set at [-5.12; 5.12]. Function’s global
minimum is found in point x=0 with value f(x)=0 [8,10].
2
1
( ) 10 ( 10cos(2 ))
D
i i
i
f x n x x
π
=
= −
(5)
This function is defined as F5 in paper.
F. Rosenbrock's Valley Function
Rosenbrock’s valley function (banana function) is a classic
optimization problem. The global optimum is inside a long,
narrow, parabolic shaped flat valley. To find the valley is
trivial, however convergence to the global optimum is difficult
and hence this problem has been repeatedly used in assess the
performance of optimization algorithms. Banana function is
additively separable. Boundaries are set at [-2.048; 2.048].
Function’s global minimum is found in point x=1 with value
f(x)=0 [10]. This function is defined as shown below.
1
2 2 2
1
1
( ) 100 ( ) (1 )
D
i i i
i
f x x x x
+
=
= + −
(6)
This function is defined as F6 in paper.
V. E
XPERIMENTAL RESULTS
In all experiments, stochastic uniform selection was used.
Parameters of GA for experiments were as following:
Gaussian mutation with p
m
mutation coefficient of 0.01 and
crossover rate p
c
of 0.8 was used, number of independent runs
for each experiment was 30, initial population N of size 20
was randomly created and used in experiments.
Dimensionality of the search space D for all test function was
set to 30. Number of overall evaluations was set to 10000. For
all test functions, finding global minimum is the objective. All
of the experiment is realized for six different types of test
functions. A comparison between the proposed crossover
method (RC) and other crossover methods are made and the
results are comparatively presented in table 1.
Table 1. Performance comparison for the different types of test functions
Function Results SPC TPC IC HC AC
RC
F1 Best
Worst
Average
5.732
7.246
5.737
3.416
6.511
3.417
6.207
6.246
6.208
0.011
8.099
2.81
5.589
6.389
5.589
0.0027
6.163
0.3299
F2 Best
Worst
Average
70.52
105.7
70.52
68.63
94.04
68.64
64.04
80.4
64.04
0.024
87.41
5.706
73.71
89.18
73.72
0.1023
106.8
11.73
F3 Best
Worst
Average
20.79
261.7
37.02
15.06
204.8
16.22
22.86
59.24
22.87
2.36
381
17.58
24.37
47.94
24.37
4.577
108.2
18.97
F4 Best
Worst
Average
-115.7
-29.46
-115.6
-115.8
-26.85
-115.4
-114.1
-27.91
-114
-117.7
-26.1
-117.1
-113.2
-27.72
-113.1
-117.8
-27.75
-117.7
F5 Best
Worst
Average
94.69
241.3
111.3
50.84
257.7
52.15
122.6
256.6
187.3
12.68
173.1
31.98
154
251.4
154.1
2.669
232.5
3.691
F6 Best
Worst
Average
73.07
269.3
73.08
70.07
390.3
78.39
34.71
349.2
34.74
29.35
369.1
117.5
27.08
260.3
27.12
28.59
316.1
32.69
VI. C
ONCLUSION
In this paper, a new crossover operator called RC is
proposed and experiments are conducted. The proposed
operator is tested by a number of test functions with various
levels of difficulty. A comparison between the results of this
method and the results of other crossover operators are made.
RC operator gives better results according to other crossover
operators. Although the most of crossover operators showed
similar results, RC operator had slightly better results than the
other crossover for F1, F2, F4, F5 functions. For F3 function,
HC operator has slightly better result than RC operator.
However, RC operator produces better result than SPC, TPC,
IC and AC. For F6 function, the results of this study are very
close to those of AC, but in generally RC operator performed
the best results than other crossover operators.
The most important advantage of the proposed method is
that more variety is presented in possible number of children
according to SPC and TPC operators. The experiments and the
results presented in the paper clearly reveal the potential
capability of the proposed method in optimization processing
based on GA. Moreover, it has the great potential to improve
the performance of GA applications in different area of
engineering.
R
EFERENCES
[1] S., N. Sivanandan, S. N. Deepa, Introduction to Genetic Algorithm,
Springer-Verlag Berlin Heidelberg, 2008.
[2] J. H. Holland, Adaptation in Natural and Artificial Systems: An
Introductory Analysis with Applications to Biology, Control, and
Artificial Intelligence, Cambridge, USA: The MIT Press, 1992.
[3] C. R. Reeves, J. E. Rome, Genetic Algorithms Principles and
Perspectives, Kluwer Academic Publishers. Dordrecht, 2003.
[4] T. Kellegoz, B. Toklu, J. Wilson, “Comparing efficiencies of genetic
crossover operators for one machine total weighted tardiness problem,”
Applied Mathematics and Computation, 199, 590–598, 2008.
[5] L. Booker, “Improving search in genetic algorithms,” In Genetic
Algorithms and Simulated Annealing, L. Davis (Ed.). Morgan
Kaufmann Publishers, 1987.
[6] M. Kaya, “The effects of two new crossover operators on genetic
algorithm performance,” Applied Soft Computing, 11, 881–890, 2011.
[7] http://www.mathworks.com/help/toolbox/gads/f6174dfi10.html.
[8] P. Stepaj, G. Marin, “Comparison of a crossover operator in binary-
coded genetic algorithms,” Wseas Trans. on Computers, 9 (9), 1064–
1073, 2010.
[9] C. M, Garci, M. Lozano, F., Herrera, D. Molina, A., M. Sa´nchez,
“Global and local real-coded genetic algorithms based on parent centric
crossover operators,” European Journal of Operational Research, 185,
1088–1113, 2008.
[10] D. Kusum, T. Manoj, “A new crossover operator for real coded genetic
algorithms,” Applied Mathematics and Computation, 188, 895–911,
2007.
... Additionally, they employ other operators to generate novel solutions. The variability among these algorithms lies in the standard representation of problems and the nature and relative significance of the operations introducing new solutions [52,53,54]. ...
Preprint
Full-text available
Data-driven models, in general, and machine learning (ML) models, in particular, have gained popularity over recent years with an increased usage of such models across the scientific and engineering domains. When using ML models in realistic and dynamic environments, users need to often handle the challenge of concept drift (CD). In this study, we explore the application of genetic algorithms (GAs) to address the challenges posed by CD in such settings. We propose a novel two-level ensemble ML model, which combines a global ML model with a CD detector, operating as an aggregator for a population of ML pipeline models, each one with an adjusted CD detector by itself responsible for re-training its ML model. In addition, we show one can further improve the proposed model by utilizing off-the-shelf automatic ML methods. Through extensive synthetic dataset analysis, we show that the proposed model outperforms a single ML pipeline with a CD algorithm, particularly in scenarios with unknown CD characteristics. Overall, this study highlights the potential of ensemble ML and CD models obtained through a heuristic and adaptive optimization process such as the GA one to handle complex CD events.
... as a benchmark test [34]. The resulting performance of the proposed GA-PSO algorithm over 100 iterations is compared to improved GA and improved PSO, respectively. ...
Article
Autonomous driving is a complex and highly dynamic process that ensures controlling the coupled longitudinal and lateral vehicle dynamics. Model predictive control, distinguished by its predictive feature, optimal performance, and ability to handle constraints, makes it one of the most promising tools for this type of control application. The content of this article handles the problem of autonomous driving by proposing an adaptive linear parameter varying model predictive controller (LPV-MPC), where the controller's prediction model is adaptive by means of a recurrent neural network. The proposed LPV-MPC is further optimised by a hybrid Genetic and Particle Swarm Optimization Algorithm (GA-PSO). The developed controller is tested and evaluated on a challenging track under variable wind disturbance.
... By integrating these techniques, the KGWO algorithm aims to reduce convergence time, improve path smoothness, and optimize path length. The elite strategy ensures that the best solutions are retained and propagated through the generations, while the PMX mutation introduces diversity and helps escape local optima [25,26]. This hybrid approach not only accelerates the convergence process but also increases the robustness of the algorithm, making it less susceptible to getting stuck in local optima. ...
Article
Full-text available
To address the path planning problem for automated guided vehicles (AGVs) in challenging and complex industrial environments, a hybrid optimization approach is proposed, integrating a Kalman filter with grey wolf optimization (GWO), as well as incorporating partially matched crossover (PMX) mutation operations and roulette wheel selection. Paths are first optimized using GWO, then refined with Kalman filter corrections every ten iterations. Moreover, roulette wheel selection guides robust parent path selection, while an elite strategy and partially matched crossover (PMX) with mutation generate diverse offspring. Extensive simulations and experiments were carried out under a densely packed goods scenario and complex indoor layout scenario, within a fully automated warehouse environment. The results showed that this hybrid method not only enhanced the various optimization metrics but also ensured more predictable and collision-free navigation paths, particularly in environments with complex obstacles. These improvements lead to increased operational efficiency and safety, highlighting the method’s potential in real-world applications.
... Two chromosomes (parents) are combined by the crossover operator to create new chromosomes (offspring). This can be applied in GA in a variety of ways, including a heuristic crossover, two-point crossover and single-point crossover [34]. Therefore, GAs are not only valued in theoretical research but also demonstrate significant potential and value in practical applications. ...
Article
Full-text available
In today’s interconnected world, teamwork and collaboration are becoming essential competencies across all disciplines. This review examines various pedagogical strategies aimed at nurturing these skills, with a specific focus on integrating algorithms into educational practices. While traditional approaches classify teamwork strategies as either instructor-led or student-led, this review introduces a third method that is based on ML algorithms, which are promising methods for optimizing team composition based on both static and dynamic student characteristics. We investigate the effectiveness of these algorithms in enhancing collaborative learning outcomes compared to conventional grouping methods. In fact, this review synthesizes the findings from 20 key studies on the implementation of these technologies in educational settings, evaluating their impact on learning outcomes, student motivation and overall satisfaction. Our findings suggest that computer-enhanced strategies not only improve the academic and collaborative experience but also pave the way for more personalized and dynamic educational environments. This review aims to provide educators and curriculum developers with comprehensive insights into leveraging advanced computational tools to foster effective teamwork and interdisciplinary collaboration, thereby enhancing the overall quality of education and preparing students for the collaborative demands of the professional world.
... The arithmetic crossover operator is used to join the two parent chromosomes in a linear fashion. In an arithmetic crossover, two chromosomes are selected randomly to cross, and they are linearly connected to form two offspring [35]. The following computation yields this linear combination: ...
Article
Full-text available
Cloud providers frequently utilise two tightly coupled resource management strategies like task scheduling & data replication to boost performance of the system generally, guarantee service level agreement (SLA) compliance, as well as protect their own financial gain. Nevertheless, it can be quite difficult to strike a balance among system performance & supplier profit. The purpose of this study is to provide an Improved Correlation strategy based Task Scheduling and Data replication in Cloud (ICTSDC). The main phases of the suggested system are as follows: Task scheduling and Replication management. Initially, optimization-based task scheduling will takes place under the consideration of objectives like Bottleneck value, migration cost, VM load, improved correlation, and replication, respectively. For this, a new Self-adaptive Dwarf Mongoose Optimization (SADMO) Algorithm will be introduced, which is the extended version. In Replication management step, the first it needs to identify the candidate replicas based on the objective. Replication is the reciprocal of improved correlation. Further, the placement of replicas is carried out under the optimization strategy by proposing SADMO model. The outcomes of the ICTSDC technique are evaluated with those of other methods using a variety of metrics, like bottleneck value, migration cost, VM load, improved correlation, as well as replication efficiency. Keywords— Task Scheduling; Data Replication; Cloud; Improved Correlation; Optimization.
Article
Mobile Ad-Hoc Network (MANETs) is referred to as the mobile wireless nodes that make up ad hoc networks. The network topology may fluctuate on a regular basis due to node mobility. Each node serves as a router, passing traffic throughout the network, and they construct the network’s infrastructure on their own. MANET routing protocols need to be able to store routing information and adjust to changes in the network topology in order to forward packets to their destinations. While mobile networks are the main application for MANET routing techniques, networks with stationary nodes and no network infrastructure can also benefit from using them. In this paper, we proposed a Self Adaptive Tasmanian Devil Optimization (SATDO) based Routing and Data Aggregation in MANET. The first step in the process is clustering, where the best cluster heads are chosen according to a number of limitations, such as energy, distance, delay, and enhanced risk factor assessment on security conditions. In this study, the SATDO algorithm is proposed for this optimal selection. Subsequent to the clustering process, routing will optimally take place via the same SATDO algorithm introduced in this work. Finally, an improved kernel least mean square-based data aggregation method is carried out to avoid data redundancy. The efficiency of the suggested routing model is contrasted with the conventional algorithms via different performance measures.
Article
This paper proposes a novel agglomerated privacy-preservation model integrated with data mining and evolutionary Genetic Algorithm (GA). Privacy-pReservIng with Minimum Epsilon (PRIMϵ) delivers minimum privacy budget (ϵ) value to protect personal or sensitive data during data mining and publication. In this work, the proposed Pattern identification in the Locale of Users with Mining (PLUM) algorithm, identifies frequent patterns from dataset containing users’ sensitive data. ϵ-allocation by Differential Privacy (DP) is achieved in PRIMϵ with GA PRIMϵ , yielding a quantitative measure of privacy loss (ϵ) ranging from 0.0001 to 0.045. The proposed model maintains the trade-off between privacy and data utility with an average relative error of 0.109 on numerical data and an Earth Mover’s Distance (EMD) metric in the range between [0.2,1.3] on textual data. PRIMϵ model is verified with Probabilistic Computational Tree Logic (PCTL) and proved to accept DP data only when ϵ ≤ 0.5. The work demonstrated resilience of model against background knowledge, membership inference, reconstruction, and privacy budget attack. PRIMϵ is compared with existing techniques on DP and is found to be linearly scalable with worst time complexity of O(n log n) .
Article
Genetic Algorithm falls under the category of evolutionary algorithm that follows the principles of natural selection and genetics, where the best adapted individuals in a population are more likely to survive and reproduce, passing on their advantageous traits to their offsprings. Crossover is a crucial operator in genetic algorithms as it allows the genetic material of two or more individuals in the population to combine and create new individuals. Optimizing it can potentially lead to better solutions and faster convergence of the genetic algorithm. The proposed crossover operator gradually changes the alpha value as the search proceeds, similar to the temperature in simulated annealing. The performance of the proposed crossover operator is compared with the simple arithmetic crossover operator. The experiments are conducted using Python and results show that the proposed crossover operator outperforms the simple arithmetic crossover operator. This paper also emphasizes the importance of optimizing genetic operators, particularly crossover operators, to improve the overall performance of genetic algorithms.
Article
Genetic algorithms (GAs) represent a method that mimics the process of natural evolution in effort to find good solutions. In that process, crossover operator plays an important role. To comprehend the genetic algorithms as a whole, it is necessary to understand the role of a crossover operator. Today, there are a number of different crossover operators that can be used in binary-coded GAs. How to decide what operator to use when solving a problem? When dealing with different classes of problems, crossover operators will show various levels of efficiency in solving those problems. A number of test functions with various levels of difficulty has been selected as a test polygon for determine the performance of crossover operators. The aim of this paper is to present a larger set of crossover operators used in genetic algorithms with binary representation and to draw some conclusions about their efficiency. Results presented here confirm the high-efficiency of uniform crossover and two-point crossover, but also show some interesting comparisons among others, less used crossover operators.
Article
In this paper, a new real coded crossover operator, called the Laplace Crossover (LX) is proposed. LX is used in conjunction with two well known mutation operators namely the Makinen, Periaux and Toivanen Mutation (MPTM) and Non-Uniform Mutation (NUM) to define two new generational genetic algorithms LX–MPTM and LX–NUM respectively. These two genetic algorithms are compared with two existing genetic algorithms (HX–MPTM and HX–NUM) which comprise of Heuristic Crossover operator and same two mutation operators. A set of 20 test problems available in the global optimization literature is used to test the performance of these four genetic algorithms. To judge the performance of the LX operator, two kinds of analysis is performed. Firstly a pair wise comparison is performed between LX–MPTM and HX–MPTM, and then between LX–NUM and HX–NUM. Secondly the overall comparison of performances of all the four genetic algorithms is carried out based on a performance index (PI). The comparative study shows that Laplace crossover (LX) performs quite well and one of the genetic algorithms defined (LX–MPTM) outperforms other genetic algorithms.
Article
In this study, the well-known one machine problem with the performance criterion of minimizing total weighted tardiness is considered. This problem is known to be NP-hard, and consists of one machine and n independent jobs. Each of these jobs has a distinct integer processing time, a distinct integer weighting factor, and a distinct integer due date. The purpose of this problem is to find a sequence of these jobs minimizing the sum of the weighted tardiness. Using benchmarking problems, this study compares performances of eleven genetic crossover operators which have been widely used to solve other types of hard scheduling problems.
Book
Genetic Algorithms are adaptive heuristic search algorithm premised on the evolutionary ideas of natural selection and genetic. The basic concept of Genetic Algorithms is designed to simulate processes in natural system necessary for evolution, specifically those that follow the principles first laid down by Charles Darwin of survival of the fittest. This book is designed to provide an in-depth knowledge on the basic operational features and characteristics of Genetic Algorithms. The various operators and techniques given in the book are pertinent to carry out Genetic Algorithm Research Projects. The book also explores the different types are Genetic Algorithms available with their importance. Implementation of Genetic Algorithm concept has been performed using the universal language C/C++ and the discussion also extends to Genetic Algorithm MATLAB Toolbox. Few Genetic Algorithm problems are programmed using MATLAB and the simulated results are given for the ready reference of the reader. The applications of Genetic Algorithms in Machine learning, Mechanical Engineering, Electrical Engineering, Civil Engineering, Data Mining, Image Processing, and VLSI are dealt to make the readers understand where the concept can be applied.
Article
Parent-centric real-parameter crossover operators create the offspring in the neighbourhood of one of the parents, the female parent. The other parent, the male one, defines the range of the neighbourhood. With the aim of improving the behaviour of these crossover operators, we present three processes that are performed before their application. First, a female and male differentiation process determines the individuals in the population that may become female or/and male parents. Then, two different selection mechanisms choose the female and male parents from each group. In addition, we tackle the election of the most adequate evolution model to take out profit from these parent selection mechanisms. The experimental results confirm that these three processes may enhance the operation of the parent-centric crossover operators.
Article
In this study, two new crossover operators in genetic algorithm are proposed; sequential and random mixed crossover. In the first stage, existing and developed crossover operators were applied to two benchmark problems, namely the reinforced concrete beam problem and the space truss problem. In the second stage, the developed crossover operators were applied to a deep beam problem and, a concrete mix design problem. The fittest values obtained using developed crossover operators were higher than those were obtained with existing crossover operator after 30,000 generations. Moreover, in developed crossover operators, the random mixed crossover yields higher fitness values than the existing crossover operators.
Book
Genetic algorithms are playing an increasingly important role in studies of complex adaptive systems, ranging from adaptive agents in economic theory to the use of machine learning techniques in the design of complex devices such as aircraft turbines and integrated circuits. Adaptation in Natural and Artificial Systems is the book that initiated this field of study, presenting the theoretical foundations and exploring applications. In its most familiar form, adaptation is a biological process, whereby organisms evolve by rearranging genetic material to survive in environments confronting them. In this now classic work, Holland presents a mathematical model that allows for the nonlinearity of such complex interactions. He demonstrates the model's universality by applying it to economics, physiological psychology, game theory, and artificial intelligence and then outlines the way in which this approach modifies the traditional views of mathematical genetics. Initially applying his concepts to simply defined artificial systems with limited numbers of parameters, Holland goes on to explore their use in the study of a wide range of complex, naturally occuring processes, concentrating on systems having multiple factors that interact in nonlinear ways. Along the way he accounts for major effects of coadaptation and coevolution: the emergence of building blocks, or schemata, that are recombined and passed on to succeeding generations to provide, innovations and improvements. Bradford Books imprint