Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #include "postgres.h"
00037 #include "optimizer/geqo_random.h"
00038 #include "optimizer/geqo_recombination.h"
00039
00040
00041
00042
00043
00044
00045 void
00046 pmx(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene)
00047 {
00048 int *failed = (int *) palloc((num_gene + 1) * sizeof(int));
00049 int *from = (int *) palloc((num_gene + 1) * sizeof(int));
00050 int *indx = (int *) palloc((num_gene + 1) * sizeof(int));
00051 int *check_list = (int *) palloc((num_gene + 1) * sizeof(int));
00052
00053 int left,
00054 right,
00055 temp,
00056 i,
00057 j,
00058 k;
00059 int mx_fail,
00060 found,
00061 mx_hold;
00062
00063
00064
00065
00066 for (k = 0; k < num_gene; k++)
00067 {
00068 failed[k] = -1;
00069 from[k] = -1;
00070 check_list[k + 1] = 0;
00071 }
00072
00073
00074 left = geqo_randint(root, num_gene - 1, 0);
00075 right = geqo_randint(root, num_gene - 1, 0);
00076
00077 if (left > right)
00078 {
00079 temp = left;
00080 left = right;
00081 right = temp;
00082 }
00083
00084
00085
00086 for (k = 0; k < num_gene; k++)
00087 {
00088 offspring[k] = tour2[k];
00089 from[k] = DAD;
00090 check_list[tour2[k]]++;
00091 }
00092
00093
00094 for (k = left; k <= right; k++)
00095 {
00096 check_list[offspring[k]]--;
00097 offspring[k] = tour1[k];
00098 from[k] = MOM;
00099 check_list[tour1[k]]++;
00100 }
00101
00102
00103
00104
00105 mx_fail = 0;
00106
00107
00108
00109 for (k = left; k <= right; k++)
00110 {
00111
00112 if (tour1[k] == tour2[k])
00113 found = 1;
00114
00115 else
00116 {
00117 found = 0;
00118
00119 j = 0;
00120 while (!(found) && (j < num_gene))
00121 {
00122 if ((offspring[j] == tour1[k]) && (from[j] == DAD))
00123 {
00124
00125 check_list[offspring[j]]--;
00126 offspring[j] = tour2[k];
00127 found = 1;
00128 check_list[tour2[k]]++;
00129 }
00130
00131 j++;
00132 }
00133
00134 }
00135
00136 if (!(found))
00137 {
00138 failed[mx_fail] = (int) tour1[k];
00139 indx[mx_fail] = k;
00140 mx_fail++;
00141 }
00142
00143 }
00144
00145
00146
00147
00148
00149 if (mx_fail > 0)
00150 {
00151 mx_hold = mx_fail;
00152
00153 for (k = 0; k < mx_hold; k++)
00154 {
00155 found = 0;
00156
00157 j = 0;
00158 while (!(found) && (j < num_gene))
00159 {
00160
00161 if ((failed[k] == (int) offspring[j]) && (from[j] == DAD))
00162 {
00163 check_list[offspring[j]]--;
00164 offspring[j] = tour2[indx[k]];
00165 check_list[tour2[indx[k]]]++;
00166
00167 found = 1;
00168 failed[k] = -1;
00169 mx_fail--;
00170 }
00171
00172 j++;
00173 }
00174
00175 }
00176
00177 }
00178
00179
00180
00181
00182 for (k = 1; k <= num_gene; k++)
00183 {
00184
00185 if (check_list[k] > 1)
00186 {
00187 i = 0;
00188
00189 while (i < num_gene)
00190 {
00191 if ((offspring[i] == (Gene) k) && (from[i] == DAD))
00192 {
00193 j = 1;
00194
00195 while (j <= num_gene)
00196 {
00197 if (check_list[j] == 0)
00198 {
00199 offspring[i] = (Gene) j;
00200 check_list[k]--;
00201 check_list[j]++;
00202 i = num_gene + 1;
00203 j = i;
00204 }
00205
00206 j++;
00207 }
00208
00209 }
00210
00211 i++;
00212 }
00213
00214 }
00215 }
00216
00217 pfree(failed);
00218 pfree(from);
00219 pfree(indx);
00220 pfree(check_list);
00221 }