-
Notifications
You must be signed in to change notification settings - Fork 0
/
operadores.c
63 lines (58 loc) · 1.33 KB
/
operadores.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <stdio.h>
#include "operadores.h"
#include "utilidades.h"
void mutacion(poblacion pob,double prob_mut)
{
int i,j,rand_pos1;
double rand_num;
for(i=0;i<pob.tam_poblacion;i++)
{
for(j=0;j<pob.num_variables;j++)
{
//numero aleatoreo entre 0 y 1
rand_num=randval();
if(rand_num<prob_mut)
{
//numero aleatoreo entre 0 y num_var
rand_pos1=(int)randval_between(0.0,(double)pob.individuos[i].genes[j].var->p);
if(pob.individuos[i].genes[j].valor[rand_pos1]=='1')
pob.individuos[i].genes[j].valor[rand_pos1]='0';
else
pob.individuos[i].genes[j].valor[rand_pos1]='1';
}
}
}
}
void crossover(poblacion pob,double prob_cross)
{
int i,one,first=0;
double p;
for(i=0;i<pob.tam_poblacion;i++)
{
p=randval();
if(p<prob_cross)
{
first++;
if(first%2==0)
xover(pob.individuos[one].genes,pob.individuos[i].genes,pob);
else
one=i;
}
};
}
void xover(gen *ind1, gen *ind2, poblacion pob)
{
int i,j,punto;
for(i=0;i<pob.num_variables;i++)
{
//se busca un punto de cruzamiento para la variable i
punto=(int)randval_between(0.0,(double)ind1[i].var->p-1);
if(punto!=0)
{
for(j=punto;j<ind1[i].var->p;j++)
ind1[i].valor[j]=ind2[i].valor[j];
for(j=0;j<punto;j++)
ind2[i].valor[j]=ind1[i].valor[j];
}
}
}