forked from ajupazhamayil/TSP_In_GMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathABC_TSP.cpp
More file actions
executable file
·462 lines (398 loc) · 12.6 KB
/
ABC_TSP.cpp
File metadata and controls
executable file
·462 lines (398 loc) · 12.6 KB
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include<time.h>
#include<fstream>
#include<iostream>
/* Control Parameters of ABC algorithm*/
#define NP 20 /* The number of colony size (employed bees+onlooker bees)*/
#define FoodNumber NP/2 /*The number of food sources equals the half of the colony size*/
#define limit 100 /*A food source which could not be improved through "limit" trials is abandoned by its employed bee*/
#define maxCycle 2500 /*The number of cycles for foraging {a stopping criteria}*/
/* Problem specific variables*/
#define D 3 /*The number of parameters of the problem to be optimized*/
#define lb -100 /*lower bound of the parameters. */
#define ub 100 /*upper bound of the parameters. lb and ub can be defined as arrays for the problems of which parameters have different bounds*/
#define runtime 30 /*Algorithm can be run many times in order to see its robustness*/
using namespace std;
int cities[D][D];
double Foods[FoodNumber][D]; /*Foods is the population of food sources. Each row of Foods matrix is a vector holding D parameters to be optimized. The number of rows of Foods matrix equals to the FoodNumber*/
double Foods1[FoodNumber][D]; // For TSP
double f[FoodNumber]; /*f is a vector holding objective function values associated with food sources */
double f1[FoodNumber];
double fitness[FoodNumber]; /*fitness is a vector holding fitness (quality) values associated with food sources*/
double fitness1[FoodNumber];
double trial[FoodNumber]; /*trial is a vector holding trial numbers through which solutions can not be improved*/
double prob[FoodNumber]; /*prob is a vector holding probabilities of food sources (solutions) to be chosen*/
double solution [D]; /*New solution (neighbour) produced by v_{ij}=x_{ij}+\phi_{ij}*(x_{kj}-x_{ij}) j is a randomly chosen parameter and k is a randomlu chosen solution different from i*/
double solution1 [D];
double ObjValSol; /*Objective function value of new solution*/
double FitnessSol; /*Fitness value of new solution*/
int neighbour, param2change; /*param2change corrresponds to j, neighbour corresponds to k in equation v_{ij}=x_{ij}+\phi_{ij}*(x_{kj}-x_{ij})*/
double GlobalMin; /*Optimum solution obtained by ABC algorithm*/
double GlobalParams[D]; /*Parameters of the optimum solution*/
double GlobalMins[runtime]; /*GlobalMins holds the GlobalMin of each run in multiple runs*/
double r; /*a random number in the range [0,1)*/
/*a function pointer returning double and taking a D-dimensional array as argument */
/*If your function takes additional arguments then change function pointer definition and lines calling "...=function(solution);" in the code*/
typedef double (*FunctionCallback)(double sol[D]);
/*benchmark functions */
double sphere(double sol[D]);
/*Write your own objective function name instead of sphere*/
FunctionCallback function = &sphere;
/*Fitness function*/
double CalculateFitness(double fun)
{
double result=0;
if(fun>=0)
{
result=1/(fun+1);
}
else
{
result=1+fabs(fun);
}
return result;
}
/*The best food source is memorized*/
void MemorizeBestSource()
{
int i,j;
for(i=0;i<FoodNumber;i++)
{
if (fitness1[i]<GlobalMin)
{
GlobalMin=fitness1[i];
for(j=0;j<D;j++)
GlobalParams[j]=Foods1[i][j];
}
}
}
void SPV1(double sol[D])
{
int i,c=0,j,minindex=0;
double min=0;
for(j=0;j<D;j++)
{
minindex=0;
min=sol[0];
for(i=0;i<D;i++)
{
if(sol[i]<min)
{
min=sol[i];
minindex=i;
}
}
solution1[minindex]=c;
sol[minindex]=10000000;
c++;
}
}
void SPV(int index)
{
int i,c=0,j,minindex=0;
double min=0;
for(j=0;j<D;j++)
{
minindex=0;
min=Foods[index][0];
for(i=0;i<D;i++)
{
if(Foods[index][i]<min)
{
min=Foods[index][i];
minindex=i;
}
}
Foods1[index][minindex]=c;
Foods[index][minindex]=10000000;
c++;
}
}
//changed sum calculation from i,i to i,i+1
int CalculateFitness1(double sol[D])
{
int i,sum=0;
for(i=0;i<D-1;i++)
{
sum+=cities[(int)sol[i]][(int)sol[i+1]];
}
sum+=cities[(int)sol[D-1]][(int)sol[0]];
return sum;
}
/*Variables are initialized in the range [lb,ub]. If each parameter has different range, use arrays lb[j], ub[j] instead of lb and ub */
/* Counters of food sources are also initialized in this function*/
void init(int index)
{
int j;
for (j=0;j<D;j++)
{
r = ((double)rand() / ((double)(RAND_MAX)+(double)(1)));
Foods[index][j]=r*(ub-lb)+lb;
solution[j]=Foods[index][j];
}
SPV(index);
for(j=0;j<D;j++)
{
solution1[j]=Foods1[index][j];
}
f[index]=function(solution);
fitness1[index]=CalculateFitness1(solution1);
fitness[index]=CalculateFitness(f[index]);
trial[index]=0;
}
/*All food sources are initialized */
void initial()
{
int i;
for(i=0;i<FoodNumber;i++)
{
init(i);
}
//GlobalMin=f[0];
GlobalMin=fitness1[0];
for(i=0;i<D;i++)
{
//GlobalParams[i]=Foods[0][i];
GlobalParams[i]=Foods1[0][i];
}
}
void SendEmployedBees()
{
int i,j;
/*Employed Bee Phase*/
for (i=0;i<FoodNumber;i++)
{
/*The parameter to be changed is determined randomly*/
r = ((double)rand() / ((double)(RAND_MAX)+(double)(1)) );
param2change=(int)(r*D);
/*A randomly chosen solution is used in producing a mutant solution of the solution i*/
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
neighbour=(int)(r*FoodNumber);
/*Randomly selected solution must be different from the solution i*/
while(neighbour==i)
{
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
neighbour=(int)(r*FoodNumber);
}
for(j=0;j<D;j++)
solution[j]=Foods[i][j];
/*v_{ij}=x_{ij}+\phi_{ij}*(x_{kj}-x_{ij}) */
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
solution[param2change]=Foods[i][param2change]+(Foods[i][param2change]-Foods[neighbour][param2change])*(r-0.5)*2;
/*if generated parameter value is out of boundaries, it is shifted onto the boundaries*/
if (solution[param2change]<lb)
solution[param2change]=lb;
if (solution[param2change]>ub)
solution[param2change]=ub;
ObjValSol=function(solution);
SPV1(solution);
FitnessSol=CalculateFitness1(solution1);
/*a greedy selection is applied between the current solution i and its mutant*/
if (FitnessSol>fitness1[i])
{
/*If the mutant solution is better than the current solution i, replace the solution with the mutant and reset the trial counter of solution i*/
trial[i]=0;
for(j=0;j<D;j++)
Foods1[i][j]=solution1[j];
f[i]=ObjValSol;
fitness1[i]=FitnessSol;
}
else
{ /*if the solution i can not be improved, increase its trial counter*/
trial[i]=trial[i]+1;
}
}
/*end of employed bee phase*/
}
/* A food source is chosen with the probability which is proportioal to its quality*/
/*Different schemes can be used to calculate the probability values*/
/*For example prob(i)=fitness(i)/sum(fitness)*/
/*or in a way used in the metot below prob(i)=a*fitness(i)/max(fitness)+b*/
/*probability values are calculated by using fitness values and normalized by dividing maximum fitness value*/
void CalculateProbabilities()
{
int i;
double maxfit;
maxfit=fitness1[0];
for (i=1;i<FoodNumber;i++)
{
if (fitness1[i]<maxfit)
maxfit=fitness1[i];
}
for (i=0;i<FoodNumber;i++)
{
prob[i]=(0.9*(fitness1[i]/maxfit))+0.1;
}
}
void SendOnlookerBees()
{
int i,j,t;
i=0;
t=0;
/*onlooker Bee Phase*/
while(t<FoodNumber)
{
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
if(r<prob[i]) /*choose a food source depending on its probability to be chosen*/
{
t++;
/*The parameter to be changed is determined randomly*/
r = ((double)rand() / ((double)(RAND_MAX)+(double)(1)) );
param2change=(int)(r*D);
/*A randomly chosen solution is used in producing a mutant solution of the solution i*/
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
neighbour=(int)(r*FoodNumber);
/*Randomly selected solution must be different from the solution i*/
while(neighbour==i)
{
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
neighbour=(int)(r*FoodNumber);
}
for(j=0;j<D;j++)
solution[j]=Foods[i][j];
/*v_{ij}=x_{ij}+\phi_{ij}*(x_{kj}-x_{ij}) */
r = ( (double)rand() / ((double)(RAND_MAX)+(double)(1)) );
solution[param2change]=Foods[i][param2change]+(Foods[i][param2change]-Foods[neighbour][param2change])*(r-0.5)*2;
/*if generated parameter value is out of boundaries, it is shifted onto the boundaries*/
if (solution[param2change]<lb)
solution[param2change]=lb;
if (solution[param2change]>ub)
solution[param2change]=ub;
ObjValSol=function(solution);
SPV1(solution);
FitnessSol=CalculateFitness1(solution1);
/*a greedy selection is applied between the current solution i and its mutant*/
if (FitnessSol>fitness1[i])
{
/*If the mutant solution is better than the current solution i, replace the solution with the mutant and reset the trial counter of solution i*/
trial[i]=0;
for(j=0;j<D;j++)
Foods1[i][j]=solution[j];
f[i]=ObjValSol;
fitness1[i]=FitnessSol;
}
else
{ /*if the solution i can not be improved, increase its trial counter*/
trial[i]=trial[i]+1;
}
} /*if */
i++;
if (i==FoodNumber-1)
i=0;
}/*while*/
/*end of onlooker bee phase */
}
/*determine the food sources whose trial counter exceeds the "limit" value. In Basic ABC, only one scout is allowed to occur in each cycle*/
void SendScoutBees()
{
int maxtrialindex,i;
maxtrialindex=0;
for (i=1;i<FoodNumber;i++)
{
if (trial[i]>trial[maxtrialindex])
maxtrialindex=i;
}
if(trial[maxtrialindex]>=limit)
{
init(maxtrialindex);
}
}
void writeFile(string result){
std::ofstream outputfile;
outputfile.open("fileout.json",std::ofstream::trunc);
if(outputfile.is_open())
outputfile << result;
else{
cout << "Error creating file\n";
}
outputfile.close();
}
/*Main program of the ABC algorithm*/
int main()
{
int iter,run,i,j;
double mean;
mean=0;
srand(time(NULL));
//for(run=0;run<runtime;run++)
//{
//for(i=0;i<D;i++)
//{
// for(j=0;j<D;j++)
// {
// scanf("%d",&cities[i][j]);
// }
//}
for(i=0; i<D; ++i)
for(j=0; j<D; ++j)
cities[i][j] = 1; //no edge present
ifstream inputfile;
inputfile.open("file.json");
//std::string line;
//getline(inputfile,line);
//stringstream toint(line);
int s,d,weight;
for(int i=0;i<D;i++){
for(int j=0;j<D;j++){
cities[i][j]=0;
}
}
if(inputfile.is_open()){
while(!inputfile.eof()){
inputfile >> s >> d >> weight;
cities[s][d]=weight;
cities[d][s]=weight;
}
}
else{
cout << "Error opening file\n";
}
inputfile.close();
for(i=0;i<D;i++)
cities[i][i]=0;
for(int i=0;i<D;i++){
for(int j=0;j<D;j++){
cout << cities[i][j] << " ";
}
cout << "\n";
}
initial();
MemorizeBestSource();
clock_t t=clock();
for (iter=0;iter<maxCycle;iter++)
{
SendEmployedBees();
CalculateProbabilities();
SendOnlookerBees();
MemorizeBestSource();
SendScoutBees();
}
t=clock()-t;
string result="";
printf("Path is : \n\n");
for(j=0;j<D;j++)
{
printf("%d ",(int)GlobalParams[j]);
result=result+to_string((int)GlobalParams[j])+" ";
}
//GlobalParams is the shortest path array
printf("%d",(int)GlobalParams[0]);
result=result+to_string((int)GlobalParams[0]);
printf("\n\n");
//cout<<result;
//printf("No. of Clicks is %ld and time in sec is %lf",t,(float)t/CLOCKS_PER_SEC);
writeFile(result);
}
double sphere(double sol[D])
{
int j;
double top=0;
for(j=0;j<D;j++)
{
top=top+sol[j]*sol[j];
}
return top;
}