⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ga_crossover.c

📁 http://gaul.sourceforge.net/ 这里大部分人讨论的是在Matlab里实现GA的toolbox.以上为一个GA的C语言的软件包.如果你想利用GA做优化算法,非常有用.而且有
💻 C
📖 第 1 页 / 共 3 页
字号:
/**********************************************************************  ga_crossover.c **********************************************************************  ga_crossover - Genetic algorithm crossover operators.  Copyright ©2000-2003, Stewart Adcock <stewart@linux-domain.com>  All rights reserved.  The latest version of this program should be available at:  http://gaul.sourceforge.net/  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License as published by  the Free Software Foundation; either version 2 of the License, or  (at your option) any later version.  Alternatively, if your project  is incompatible with the GPL, I will probably agree to requests  for permission to use the terms of any other license.  This program is distributed in the hope that it will be useful, but  WITHOUT ANY WARRANTY WHATSOEVER.  A full copy of the GNU General Public License should be in the file  "COPYING" provided with this distribution; if not, see:  http://www.gnu.org/ **********************************************************************  Synopsis:     Routines for performing GA crossover operations.		These functions should duplicate user data where		appropriate.  To do:	Merge static crossover functions by passing datatype size. **********************************************************************/#include "gaul/ga_core.h"/**********************************************************************  ga_singlepoint_crossover_integer_chromosome()  synopsis:	`Mates' two chromosomes by single-point crossover.  parameters:  return:  last updated: 18/10/00 **********************************************************************/static void ga_singlepoint_crossover_integer_chromosome( population *pop,                                         int *father, int *mother,                                         int *son, int *daughter )  {  int	location;	/* Point of crossover */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to integer-array chromosome structure passed.");  /* Choose crossover point and perform operation */  location=random_int(pop->len_chromosomes);  memcpy(son, mother, location*sizeof(int));  memcpy(daughter, father, location*sizeof(int));  memcpy(&(son[location]), &(father[location]), (pop->len_chromosomes-location)*sizeof(int));  memcpy(&(daughter[location]), &(mother[location]), (pop->len_chromosomes-location)*sizeof(int));  return;  }/**********************************************************************  ga_doublepoint_crossover_integer_chromosome()  synopsis:	`Mates' two chromosomes by double-point crossover.  parameters:  return:  last updated: 31/05/01 **********************************************************************/static void ga_doublepoint_crossover_integer_chromosome(population *pop,                                     int *father, int *mother,                                     int *son, int *daughter)  {  int	location1, location2;	/* Points of crossover. */  int	tmp;			/* For swapping crossover loci. */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to integer-array chromosome structure passed.");  /* Choose crossover point and perform operation */  location1=random_int(pop->len_chromosomes);  do    {    location2=random_int(pop->len_chromosomes);    } while (location2==location1);    if (location1 > location2)      {      tmp = location1;      location1 = location2;      location2 = tmp;      }  memcpy(son, father, location1*sizeof(int));  memcpy(daughter, mother, location1*sizeof(int));  memcpy(&(son[location1]), &(mother[location1]), (location2-location1)*sizeof(int));  memcpy(&(daughter[location1]), &(father[location1]), (location2-location1)*sizeof(int));  memcpy(&(son[location2]), &(father[location2]), (pop->len_chromosomes-location2)*sizeof(int));  memcpy(&(daughter[location2]), &(mother[location2]), (pop->len_chromosomes-location2)*sizeof(int));  return;  }/**********************************************************************  ga_crossover_integer_singlepoints()  synopsis:	`Mates' two genotypes by single-point crossover of		each chromosome.  parameters:  return:  last updated: 12/05/00 **********************************************************************/void ga_crossover_integer_singlepoints( population *pop,                              entity *father, entity *mother,                              entity *son, entity *daughter )  {  int		i;	/* Loop variable over all chromosomes */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to entity structure passed");  for (i=0; i<pop->num_chromosomes; i++)    {    ga_singlepoint_crossover_integer_chromosome( pop,                        (int *)father->chromosome[i],			(int *)mother->chromosome[i],			(int *)son->chromosome[i],			(int *)daughter->chromosome[i]);    }  return;  }/**********************************************************************  ga_crossover_integer_doublepoints()  synopsis:	`Mates' two genotypes by double-point crossover of		each chromosome.  parameters:  return:  last updated: 31/05/00 **********************************************************************/void ga_crossover_integer_doublepoints( population *pop,                                        entity *father, entity *mother,                                        entity *son, entity *daughter )  {  int		i;	/* Loop variable over all chromosomes */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to entity structure passed");  for (i=0; i<pop->num_chromosomes; i++)    {    ga_doublepoint_crossover_integer_chromosome( pop,                        (int *)father->chromosome[i],			(int *)mother->chromosome[i],			(int *)son->chromosome[i],			(int *)daughter->chromosome[i]);    }  return;  }/**********************************************************************  ga_crossover_integer_mixing()  synopsis:	`Mates' two genotypes by mixing parents chromsomes.		Keeps all chromosomes intact, and therefore do not		need to recreate structural data.  parameters:  return:  last updated: 27/04/00 **********************************************************************/void ga_crossover_integer_mixing( population *pop,                                  entity *father, entity *mother,                                  entity *son, entity *daughter)  {  int		i;		/* Loop variable over all chromosomes */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to entity structure passed");  for (i=0; i<pop->num_chromosomes; i++)    {    if (random_boolean())      {      memcpy(son->chromosome[i], father->chromosome[i], pop->len_chromosomes*sizeof(int));      memcpy(daughter->chromosome[i], mother->chromosome[i], pop->len_chromosomes*sizeof(int));      ga_copy_data(pop, son, father, i);      ga_copy_data(pop, daughter, mother, i);      }    else      {      memcpy(daughter->chromosome[i], father->chromosome[i], pop->len_chromosomes*sizeof(int));      memcpy(son->chromosome[i], mother->chromosome[i], pop->len_chromosomes*sizeof(int));      ga_copy_data(pop, daughter, father, i);      ga_copy_data(pop, son, mother, i);      }    }  return;  }/**********************************************************************  ga_crossover_integer_mean()  synopsis:	`Mates' two genotypes by averaging the parents		alleles.  son rounded down, daughter rounded up.		Keeps no chromosomes intact, and therefore will		need to recreate all structural data.  parameters:  return:  last updated: 18 Jun 2004 **********************************************************************/void ga_crossover_integer_mean( population *pop,                                 entity *father, entity *mother,                                 entity *son, entity *daughter )  {  int		i, j;		/* Loop over all chromosomes, alleles. */  int		sum;		/* Intermediate value. */  /* Checks. */  if (!father || !mother || !son || !daughter)    die("Null pointer to entity structure passed.");  for (i=0; i<pop->num_chromosomes; i++)    {    for (j=0; j<pop->len_chromosomes; j++)      {      sum = ((int *)father->chromosome[i])[j] + ((int *)mother->chromosome[i])[j];      if ( sum > 0 )        {        ((int *)son->chromosome[i])[j] = sum/2;        ((int *)daughter->chromosome[i])[j] = (sum + 1)/2;        }      else        {        ((int *)son->chromosome[i])[j] = (sum - 1)/2;        ((int *)daughter->chromosome[i])[j] = sum/2;        }      }    }  return;  }/**********************************************************************  ga_crossover_integer_allele_mixing()  synopsis:	`Mates' two genotypes by randomizing the parents		alleles.		Keeps no chromosomes intact, and therefore will		need to recreate all structural data.  parameters:  return:  last updated: 30/04/00 **********************************************************************/void ga_crossover_integer_allele_mixing( population *pop,                                 entity *father, entity *mother,                                 entity *son, entity *daughter )  {  int		i, j;		/* Loop over all chromosomes, alleles. */  /* Checks. */  if (!father || !mother || !son || !daughter)    die("Null pointer to entity structure passed.");  for (i=0; i<pop->num_chromosomes; i++)    {    for (j=0; j<pop->len_chromosomes; j++)      {      if (random_boolean())        {        ((int *)son->chromosome[i])[j] = ((int *)father->chromosome[i])[j];        ((int *)daughter->chromosome[i])[j] = ((int *)mother->chromosome[i])[j];        }      else        {        ((int *)daughter->chromosome[i])[j] = ((int *)father->chromosome[i])[j];        ((int *)son->chromosome[i])[j] = ((int *)mother->chromosome[i])[j];        }      }    }  return;  }/**********************************************************************  ga_singlepoint_crossover_boolean_chromosome()  synopsis:	`Mates' two chromosomes by single-point crossover.  parameters:  return:  last updated: 29 Jun 2003 **********************************************************************/static void ga_singlepoint_crossover_boolean_chromosome( population *pop,                                         boolean *father, boolean *mother,                                         boolean *son, boolean *daughter )  {  int	location;	/* Point of crossover */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to boolean-array chromosome structure passed.");  /* Choose crossover point and perform operation */  location=random_int(pop->len_chromosomes);  memcpy(son, mother, location*sizeof(boolean));  memcpy(daughter, father, location*sizeof(boolean));  memcpy(&(son[location]), &(father[location]), (pop->len_chromosomes-location)*sizeof(boolean));  memcpy(&(daughter[location]), &(mother[location]), (pop->len_chromosomes-location)*sizeof(boolean));  return;  }/**********************************************************************  ga_doublepoint_crossover_boolean_chromosome()  synopsis:	`Mates' two chromosomes by double-point crossover.  parameters:  return:  last updated: 29 Jun 2003 **********************************************************************/static void ga_doublepoint_crossover_boolean_chromosome(population *pop,                             boolean *father, boolean *mother,                             boolean *son, boolean *daughter)  {  int	location1, location2;	/* Points of crossover. */  int	tmp;			/* For swapping crossover loci. */  /* Checks */  if (!father || !mother || !son || !daughter)    die("Null pointer to boolean-array chromosome structure passed.");  /* Choose crossover point and perform operation */  location1=random_int(pop->len_chromosomes);  do    {    location2=random_int(pop->len_chromosomes);    } while (location2==location1);    if (location1 > location2)      {      tmp = location1;      location1 = location2;      location2 = tmp;      }  memcpy(son, father, location1*sizeof(boolean));  memcpy(daughter, mother, location1*sizeof(boolean));  memcpy(&(son[location1]), &(mother[location1]), (location2-location1)*sizeof(boolean));  memcpy(&(daughter[location1]), &(father[location1]), (location2-location1)*sizeof(boolean));  memcpy(&(son[location2]), &(father[location2]), (pop->len_chromosomes-location2)*sizeof(boolean));  memcpy(&(daughter[location2]), &(mother[location2]), (pop->len_chromosomes-location2)*sizeof(boolean));  return;  }/**********************************************************************  ga_crossover_boolean_singlepoints()  synopsis:	`Mates' two genotypes by single-point crossover of		each chromosome.  parameters:  return:  last updated: 29 Jun 2003 **********************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -