-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsp_sa_solution.cpp
429 lines (334 loc) · 10.2 KB
/
tsp_sa_solution.cpp
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
#include <iostream>
#include <cmath>
#include <sstream>
#include "tsp_sa.h"
Solution::Solution(int n, float ** dists_f)
{
_init(n, (const float **) dists_f);
this->setInit();
}
Solution::Solution(Solution &Other) {
_init(Other.num_nodes, (const float **) Other.p_dists_f);
copy(Other);
}
void Solution::_init(const int n, const float** dists_f) {
this->num_nodes = n;
p_dists_f = new float*[n];
for (int i = 0; i < n; i++) {
p_dists_f[i] = new float[n];
for (int j = 0; j < n; j++) {
p_dists_f[i][j] = dists_f[i][j];
}
}
/* Memory Allocation */
solution = new bool*[n];
for(int i=0;i<n;i++)
{
solution[i] = new bool[n];
}//end for i
}
void Solution::setInit()
{
/* Initial Solution */
int *init = new int[num_nodes];
for (int i = 0; i < num_nodes; i++) {
init[i] = i;
}
/* Shuffling Initial Solution */
for (int i = 0; i < num_nodes; i++) {
int k = rand() % num_nodes;
int l = rand() % num_nodes;
int tmp = init[k];
init[k] = init[l];
init[l] = tmp;
}//end for i
/* Save Initial Solution and calculate length */
for (int i = 0; i < num_nodes; i++) {
for (int j = 0; j < num_nodes; j++) {
solution[i][j] = false;
}
}
for (int i = 0; i < num_nodes; i++) {
int x = init[i];
int y = init[(i + 1) % num_nodes];
solution[x][y] = true;
}
setlength();
//Memory Free
delete [] init;
}
float Solution::getlength()
{
return length;
}
void Solution::setlength() {
length = 0;
for (int i = 0; i < num_nodes; i++) {
for (int j = 0; j < num_nodes; j++) {
if (solution[i][j]) {
length += p_dists_f[i][j];
break;
}
}
}
}
void Solution::setNewSolution_br()
{
/* Update length */
//length -= pluslength;
for(int i=0;i<2;i++)
{
*make_zero_xy[i] = false;
}
/* One part should be reverse ordered */
reverse(reverse_start);
/* Set one */
for(int i=0;i<2;i++)
{
*make_one_xy[i] = true;
}
setlength();
//getchar();
}
void Solution::reverse(const int idx)
{
for(int j=0;j<num_nodes;j++)
{
if(solution[idx][j] == true)
{
solution[idx][j] = false;
reverse(j);
solution[j][idx] = true;
return;
}
}//end for j
}
int Solution::getNewSolution_br()
{
/* Randomly Pick Two Number */
int xy[2][2];
xy[0][0] = rand()%num_nodes;
do {
xy[1][0] = rand()%num_nodes;
} while (xy[0][0]==xy[1][0]);
/* Calculate Improvement */
for(int j=0;j<num_nodes;j++)
{
for(int i=0;i<2;i++)
{
if(solution[xy[i][0]][j]==true)
{
xy[i][1] = j;
}
}//end for i
}//end for j
float improve =
p_dists_f[xy[0][0]][xy[0][1]]
+ p_dists_f[xy[1][0]][xy[1][1]];
improve -= p_dists_f[xy[0][0]][xy[1][0]]
+ p_dists_f[xy[0][1]][xy[1][1]];
make_zero_xy[0] = &solution[xy[0][0]][xy[0][1]];
make_zero_xy[1] = &solution[xy[1][0]][xy[1][1]];
make_one_xy[0] = &solution[xy[0][0]][xy[1][0]];
make_one_xy[1] = &solution[xy[0][1]][xy[1][1]];
reverse_start = xy[0][1];
/* Set Next Function */
psetNext = &Solution::setNewSolution_br;
/* return improvements */
pluslength = improve;
return improve;
}
void Solution::copy(const Solution &Other)
{
if (this != &Other) {
num_nodes = Other.num_nodes;
reverse_start = Other.reverse_start;
pluslength = Other.pluslength;
length = Other.length;
psetNext = Other.psetNext;
p_dists_f = Other.p_dists_f;
for (int i = 0; i < num_nodes; i++) {
for (int j = 0; j < num_nodes; j++) {
solution[i][j] = Other.solution[i][j];
for (int k = 0; k < NUMOPT; k++) {
if (Other.make_zero_xy[k] == &(Other.solution[i][j])) {
make_zero_xy[k] = &solution[i][j];
}
if (Other.make_one_xy[k] == &(Other.solution[i][j])) {
make_one_xy[k] = &solution[i][j];
}
}//end for k
}//end for j
}//end for i
for (int i = 0; i < 2; i++) {
for (int j = 0; j < NUMVI; j++) {
index_node[i][j] = Other.index_node[i][j];
}
}
}
}
void Solution::setSolution(int *solution, int size) {
for (int i = 0; i < num_nodes; i++) {
for (int j = 0; j < num_nodes; j++) {
this->solution[i][j] = false;
}
}
for (int i = 0; i < size; i++) {
this->solution[solution[i] - 1][solution[(i+1) % size] - 1] = true;
}
setlength();
}
/* Vertex Insert Mutation Functions */
int Solution::getNewSolution_vi()
{
/* Randomly Pick Two Number */
int xy[2];
xy[0] = rand()%num_nodes;
do {
xy[1] = rand()%num_nodes;
if(xy[0]!=xy[1] && solution[xy[0]][xy[1]]==false && solution[xy[1]][xy[0]]==false)
break;
} while (1);
index_node[0][1] = xy[0];
index_node[1][1] = xy[1];
for(int j=0;j<num_nodes;j++)
{
for(int k=0;k<2;k++)
{
int i = xy[k];
if(solution[i][j] == true)
{
index_node[k][2] = j;
}
if(solution[j][i] == true)
{
index_node[k][0] = j;
}
}//end for k
}//end for j
/* Improvements */
int improvement = 0;
improvement += p_dists_f [ index_node[0][1] ][ index_node[0][2] ]
+ p_dists_f[ index_node[1][0] ][ index_node[1][1] ]
+ p_dists_f[ index_node[1][1] ][ index_node[1][2] ];
improvement -= p_dists_f [ index_node[0][1] ][ index_node[1][1] ]
+ p_dists_f[ index_node[1][0] ][ index_node[1][2] ]
+ p_dists_f[ index_node[1][1] ][ index_node[0][2] ];
psetNext = &Solution::setNewSolution_vi;
return improvement;
}
void Solution::setNewSolution_vi()
{
/* 새로운 해 공간으로의 이동 - Vertex Insertion */
solution[ index_node[0][1] ][ index_node[0][2] ] = false;
solution[ index_node[1][0] ][ index_node[1][1] ] = false;
solution[ index_node[1][1] ][ index_node[1][2] ] = false;
solution[ index_node[0][1] ][ index_node[1][1] ] = true;
solution[ index_node[1][0] ][ index_node[1][2] ] = true;
solution[ index_node[1][1] ][ index_node[0][2] ] = true;
bool a =verify()
;
if(a==false)
getchar();
setlength();
}
/* etc */
bool Solution::verify()
{
for(int i=0;i<num_nodes;i++)
{
int cnt=0;
int cnt2=0;
for(int j=0;j<num_nodes;j++)
{
if(solution[i][j]==true)
cnt++;
if(solution[j][i]==true)
cnt2++;
if(i-j==0 && solution[i][j]==true)
return false;
}
if(cnt!=1 || cnt2!=1)
return false;
}
return true;
}
void Solution::setNext(){
(this->*psetNext)();
}
void Solution::localSearch() {
while(1)
{
float best_improve;
best_improve = -0.1;
//Vertext Insert Search
{
int xy[2];
int tmp_index_node[2][NUMVI];
for (int i = 0; i < num_nodes; i++) {
for (int j = 0; j < num_nodes; j++) {
xy[0] = i;
xy[1] = j;
if (xy[0] == xy[1] || solution[xy[0]][xy[1]] || solution[xy[1]][xy[0]])
continue;
tmp_index_node[0][1] = xy[0];
tmp_index_node[1][1] = xy[1];
for (int l = 0; l < num_nodes; l++) {
for (int k = 0; k < 2; k++) {
int p = xy[k];
if (solution[p][l]) {
tmp_index_node[k][2] = l;
}
if (solution[l][p]) {
tmp_index_node[k][0] = l;
}
}//end for k
}//end for l
/* Improvements */
float improvement = 0.0f;
improvement += (p_dists_f [ tmp_index_node[0][1] ][ tmp_index_node[0][2] ]
+ p_dists_f[ tmp_index_node[1][0] ][ tmp_index_node[1][1] ]
+ p_dists_f[ tmp_index_node[1][1] ][ tmp_index_node[1][2] ]);
improvement -= (p_dists_f [ tmp_index_node[0][1] ][ tmp_index_node[1][1] ]
+ p_dists_f[ tmp_index_node[1][0] ][ tmp_index_node[1][2] ]
+ p_dists_f[ tmp_index_node[1][1] ][ tmp_index_node[0][2] ]);
if(improvement > best_improve)
{
best_improve = improvement;
for(int k=0;k<2;k++)
{
for(int l=0;l<NUMVI;l++)
{
this->index_node[k][l] = tmp_index_node[k][l];
}
}
psetNext = &Solution::setNewSolution_vi;
}
}//end for j
}//end for i
}
//Block Reverse Search
if(best_improve<=0.1)
return;
else {
//cout << "!!!" << best_improve << endl;
setNext();
//cout << getlength() << endl;
}
}
}
string Solution::getRoute() {
stringstream route;
route << "0";
int curr_p = 0;
for (int i = 0; i < this->num_nodes; i++) {
for (int j = 0; j < this->num_nodes; j++) {
if (this->solution[curr_p][j]) {
route << "-" << j;
curr_p = j;
break;
}
}
}
return string(route.str());
}