-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcrowddist.c
134 lines (129 loc) · 3.69 KB
/
crowddist.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* Crowding distance computation routines */
# include <stdio.h>
# include <stdlib.h>
# include <math.h>
# include "nsga2.h"
# include "rand.h"
/* Routine to compute crowding distance based on ojbective function values when the population in in the form of a list */
void assign_crowding_distance_list (NSGA2Type *nsga2Params, population *pop, list *lst, int front_size)
{
int **obj_array;
int *dist;
int i, j;
list *temp;
temp = lst;
if (front_size==1)
{
pop->ind[lst->index].crowd_dist = INF;
return;
}
if (front_size==2)
{
pop->ind[lst->index].crowd_dist = INF;
pop->ind[lst->child->index].crowd_dist = INF;
return;
}
obj_array = (int **)malloc(nsga2Params->nobj*sizeof(int*));
dist = (int *)malloc(front_size*sizeof(int));
for (i=0; i<nsga2Params->nobj; i++)
{
obj_array[i] = (int *)malloc(front_size*sizeof(int));
}
for (j=0; j<front_size; j++)
{
dist[j] = temp->index;
temp = temp->child;
}
assign_crowding_distance (nsga2Params, pop, dist, obj_array, front_size);
free (dist);
for (i=0; i<nsga2Params->nobj; i++)
{
free (obj_array[i]);
}
free (obj_array);
return;
}
/* Routine to compute crowding distance based on objective function values when the population in in the form of an array */
void assign_crowding_distance_indices (NSGA2Type *nsga2Params, population *pop, int c1, int c2)
{
int **obj_array;
int *dist;
int i, j;
int front_size;
front_size = c2-c1+1;
if (front_size==1)
{
pop->ind[c1].crowd_dist = INF;
return;
}
if (front_size==2)
{
pop->ind[c1].crowd_dist = INF;
pop->ind[c2].crowd_dist = INF;
return;
}
obj_array = (int **)malloc(nsga2Params->nobj*sizeof(int*));
dist = (int *)malloc(front_size*sizeof(int));
for (i=0; i<nsga2Params->nobj; i++)
{
obj_array[i] = (int *)malloc(front_size*sizeof(int));
}
for (j=0; j<front_size; j++)
{
dist[j] = c1++;
}
assign_crowding_distance(nsga2Params, pop, dist, obj_array, front_size);
free (dist);
for (i=0; i<nsga2Params->nobj; i++)
{
free (obj_array[i]);
}
free (obj_array);
return;
}
/* Routine to compute crowding distances */
void assign_crowding_distance (NSGA2Type *nsga2Params, population *pop, int *dist, int **obj_array, int front_size)
{
int i, j;
for (i=0; i<nsga2Params->nobj; i++)
{
for (j=0; j<front_size; j++)
{
obj_array[i][j] = dist[j];
}
quicksort_front_obj (pop, i, obj_array[i], front_size);
}
for (j=0; j<front_size; j++)
{
pop->ind[dist[j]].crowd_dist = 0.0;
}
for (i=0; i<nsga2Params->nobj; i++)
{
pop->ind[obj_array[i][0]].crowd_dist = INF;
}
for (i=0; i<nsga2Params->nobj; i++)
{
for (j=1; j<front_size-1; j++)
{
if (pop->ind[obj_array[i][j]].crowd_dist != INF)
{
if (pop->ind[obj_array[i][front_size-1]].obj[i] == pop->ind[obj_array[i][0]].obj[i])
{
pop->ind[obj_array[i][j]].crowd_dist += 0.0;
}
else
{
pop->ind[obj_array[i][j]].crowd_dist += (pop->ind[obj_array[i][j+1]].obj[i] - pop->ind[obj_array[i][j-1]].obj[i])/(pop->ind[obj_array[i][front_size-1]].obj[i] - pop->ind[obj_array[i][0]].obj[i]);
}
}
}
}
for (j=0; j<front_size; j++)
{
if (pop->ind[dist[j]].crowd_dist != INF)
{
pop->ind[dist[j]].crowd_dist = (pop->ind[dist[j]].crowd_dist)/nsga2Params->nobj;
}
}
return;
}