-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
493 lines (451 loc) · 16.2 KB
/
main.cpp
File metadata and controls
493 lines (451 loc) · 16.2 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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
#include <fstream>
#include <cstdlib>
#include <cstdio>
#include <vector>
#include <list>
#include <algorithm>
#include <iostream>
#include <utility>
#include <queue>
using namespace std;
int depth;
bool getpath;
int globalmaxflow = 0;
int globalsource_delete = NULL;
int globallocation_delete = NULL;
ofstream fot;
ofstream fdp;
ofstream ipk;
//Declaring Functions
void getmaxflow(vector<list<pair<int, int> > > adjL, vector<int> &cp);
void vecerase(vector< list< pair<int, int> > > &adjL, int i, int s);
bool bfs(vector< list< pair<int, int> > > &adjL, int s, int d, int V);
void printAllPaths(vector<list<pair<int, int> > > adjL, int s, int d, int V, vector<int> &cp, bool getpath);
void printAllPathsUtil(vector<list<pair<int, int> > > adjL, int u, int d, bool visited[],
int path[], int &path_index, int weight, vector<int> &cp, bool getpath);
void attacktwo(vector<list<pair<int, int> > > &adjL);
void attackone(vector<list<pair<int, int> > > &adjL, int s, int d, int V, vector<int> &cp);
void randomattack(vector<list<pair<int, int> > > adjL, int V);
int main() {
int time_count = 0;
int vertices;
int tempid = 0;
int choice;
srand(time(NULL));
int id, loc, countv = 0, counte = 0, source, dest;
list<pair<int,int>> to_delete;
pair<int,int> simple_delete;
bool firstfind = true;
//Opening Output Files
// cout <<"1. Static Calculation"<<endl;
// cout <<"2. Reactive Calculation"<<endl;
// cin >>choice;
string line;
ifstream fin;
fin.open("../data.gml");
if(fin.fail())
{
cout <<"IT HAS FAILED TO OPEN!"<<endl;
}
if(fin.good())
{
while(true) {
fin >>line;
// cout <<"Line: "<<line<<endl;
if (line == "node") {
fin >> line; //Grabs the [ after node
fin >>line; //Should grab id
if(line == "id")
{
fin >> line; //Grabs the value of id
countv++;
}
}
if (line == "source") {
if(firstfind)
{
firstfind = false;
} else counte++;
fin >> line;
id = atoi(line.c_str());
}
if (line == "target") {
fin >>line;
loc = atoi(line.c_str());
}
if(fin.eof()) break;
}
}
fin.close();
vertices = countv;
cout <<"Verticies: "<<vertices<<endl;
vector< list< pair<int, int> > > adjacencyList(vertices + 1);
vector<int> currentpath(vertices);
fin.open("../data.gml");
counte = 0;
if(fin.fail())
{
cout <<"IT HAS FAILED TO OPEN!"<<endl;
}
if(fin.good())
{
while(true) {
fin >>line;
// cout <<"Line: "<<line<<endl;
if (line == "node") {
fin >> line; //Grabs the [ after node
fin >>line; //Should grab id
if(line == "id")
{
fin >> line; //Grabs the value of id
}
}
if (line == "source") {
if(firstfind)
{
firstfind = false;
}
fin >> line;
id = atoi(line.c_str());
if(id != tempid-1 || id != tempid)
{
while(id != tempid) {
adjacencyList[tempid].push_back(make_pair(rand() % vertices, (rand() % 20) + 1));
tempid++;
}
}
else
{
tempid = id;
}
}
if (line == "target") {
fin >>line;
loc = atoi(line.c_str());
adjacencyList[id].push_back(make_pair(loc, (rand() % 20) + 1));
counte++;
}
if(fin.eof()) break;
}
}
fin.close();
do
{
source = rand() % vertices;
dest = rand() % vertices;
printAllPaths(adjacencyList, source, dest, vertices, currentpath, true);
getmaxflow(adjacencyList, currentpath);
}while(!(currentpath.size() <= 50 && globalmaxflow > 0));
// ===========Change Source to weight 20===========
list< pair<int, int> >::iterator itr = adjacencyList[source].begin();
while (itr != adjacencyList[source].end()) {
itr->second = 20;
++itr;
}
vector< list< pair<int, int> > > adjacencyListstatic_attack2 = adjacencyList;
vector< list< pair<int, int> > > randomliststatic = adjacencyList;
vector< list< pair<int, int> > > randomlistreactive = adjacencyList;
vector< list< pair<int, int> > > adjacencyListreactive_attack2 = adjacencyList;
vector< list< pair<int, int> > > adjacencyListstatic_attack1 = adjacencyList;
vector< list< pair<int, int> > > adjacencyListreactive_attack1 = adjacencyList;
// cout <<"Depth: "<<currentpath.size()<<endl;
// cout <<"Value of Flow before anything: "<<globalmaxflow<<endl;
//=====Static
//ATTACK 1
fot.open("../attack1flowovertime_static.csv");
fot << "Time, Flow" << endl;
ipk.open("../attack1impactK_static.csv");
ipk << "Time, Number of Nodes" << endl;
time_count = 1000;
// cout << "value of flow " << globalmaxflow << endl;
while (time_count != 0) {
getmaxflow(adjacencyListstatic_attack1, currentpath);
fot << time_count << "," << globalmaxflow << endl;
ipk << time_count << "," << currentpath.size() << endl;
attackone(adjacencyListstatic_attack1, source, dest, vertices, currentpath);
time_count--;
if (globalmaxflow != 0) {
globalmaxflow = 0;
printAllPaths(adjacencyListstatic_attack1, source, dest, vertices, currentpath, false);
}
}
fot.close();
ipk.close();
//ATTACK 2
globalmaxflow = 0;
fot.open("../attack2flowovertime_static.csv");
fot<<"Time, Flow"<<endl;
ipk.open("../attack2impactK_static.csv");
ipk<<"Time, Number of Nodes"<<endl;
time_count = 1000;
printAllPaths(adjacencyListstatic_attack2, source, dest, vertices, currentpath, true);
getmaxflow(adjacencyListstatic_attack2, currentpath);
while(time_count != 0)
{
fot << time_count << "," << globalmaxflow << endl;
// cout <<time <<" , "<<globalmaxflow<<endl;
ipk << time_count <<"," << currentpath.size()<<endl;
attacktwo(adjacencyListstatic_attack2);
time_count--;
if(globalmaxflow != 0)
getmaxflow(adjacencyListstatic_attack2, currentpath);
}
fot.close();
ipk.close();
//TODO: Random is not outputting anything
//Random
globalmaxflow = 0;
fot.open("../randflowovertime_static.csv");
fot<<"Time, Flow"<<endl;
ipk.open("../randimpactK_static.csv");
ipk<<"Time, Number of Nodes"<<endl;
time_count= 1000;
printAllPaths(randomliststatic, source, dest, vertices, currentpath, true);
getmaxflow(randomliststatic, currentpath);
while(time_count != 0)
{
fot << time_count << "," << globalmaxflow << endl;
// cout << time_count << "," << globalmaxflow << endl;
ipk << time_count <<"," << currentpath.size()<<endl;
randomattack(randomliststatic, vertices);
time_count--;
if(globalmaxflow != 0)
getmaxflow(randomliststatic, currentpath);
}
fot.close();
ipk.close();
//=====Reactive
//ATTACK 1
fot.open("../attack1flowovertime_reactive.csv");
fot << "Time, Flow" << endl;
ipk.open("../attack1impactK_reactive.csv");
ipk << "Time, Number of Nodes" << endl;
time_count = 1000;
// cout << "value of flow " << globalmaxflow << endl;
printAllPaths(adjacencyListreactive_attack1, source, dest, vertices, currentpath, true);
while (time_count != 0) {
getmaxflow(adjacencyListreactive_attack1, currentpath);
fot << time_count << "," << globalmaxflow << endl;
ipk << time_count << "," << currentpath.size() << endl;
attackone(adjacencyListreactive_attack1, source, dest, vertices, currentpath);
time_count--;
if (globalmaxflow != 0) {
globalmaxflow = 0;
printAllPaths(adjacencyListreactive_attack1, source, dest, vertices, currentpath, true);
}
}
fot.close();
ipk.close();
//ATTACK 2
globalmaxflow = 0;
fot.open("../attack2flowovertime_reactive.csv");
fot << "Time, Flow" << endl;
ipk.open("../attack2impactK_reactive.csv");
ipk << "Time, Number of Nodes" << endl;
time_count = 1000;
printAllPaths(adjacencyListreactive_attack2, source, dest, vertices, currentpath, true);
while (time_count != 0) {
getmaxflow(adjacencyListreactive_attack2, currentpath);
fot << time_count << "," << globalmaxflow << endl;
ipk <<time_count << "," << currentpath.size() << endl;
attacktwo(adjacencyListreactive_attack2);
time_count--;
if (globalmaxflow != 0) {
globalmaxflow = 0;
printAllPaths(adjacencyListreactive_attack2, source, dest, vertices, currentpath, true);
}
}
fot.close();
ipk.close();
//TODO: Random is not outputting anything
//Random
globalmaxflow = 0;
fot.open("../randflowovertime_reactive.csv");
fot << "Time, Flow" << endl;
ipk.open("../randimpactK_reactive.csv");
ipk << "Time, Number of Nodes" << endl;
time_count = 1000;
printAllPaths(randomlistreactive, source, dest, vertices, currentpath, true);
while (time_count != 0) {
getmaxflow(randomlistreactive, currentpath);
fot << time_count << "," << globalmaxflow << endl;
// cout <<time <<" , "<<globalmaxflow<<endl;
ipk << time_count << "," << currentpath.size() << endl;
randomattack(randomlistreactive, vertices);
time_count--;
if (globalmaxflow != 0) {
globalmaxflow = 0;
printAllPaths(randomlistreactive, source, dest, vertices, currentpath, true);
}
}
fot.close();
ipk.close();
return 0;
}
//Used to remove an edge (Attack it)
void vecerase(vector< list< pair<int, int> > >& adjList, int i, int s)
{
//i is what it is looking for
//s is the position it starts from
list<pair<int,int>> li = adjList[s];
adjList[s].clear();
// if(distance(li.begin(),li.end()) == 0)
// else
// {
for (auto it = li.rbegin(); it != li.rend(); ++it) {
//cout << (*it).first<< '\n';
if (it->first != i) {
// cout << "Making a pair out of: " << it->first << " and " << it->second << endl;
adjList[i].push_back(make_pair(it->first, it->second));
} //else cout << "Not adding: " << i << " and " << s << endl;
}
// }
}
//Checks to see if the selected values can actually be reached
bool bfs(vector<list<pair<int, int> > > &adjL, int s, int d, int V) {
bool *visited = new bool[V];
bool *finddv = new bool[V];
depth = 0;
bool notzero = true;
bool findazero = false;
for(int i = 0; i < V; i++)
visited[i] = false;
list<int> queue;
list<int> findd;
visited[s] = true;
queue.push_back(s);
findd.push_back(s);
list< pair<int, int> >::iterator itr = adjL[s].begin();
while(!queue.empty())
{
s = queue.front();
queue.pop_front();
for(itr = adjL[s].begin(); itr != adjL[s].end(); itr++)
{
if(itr->second == 0)
notzero = false;
if(!visited[itr->first] && itr->second != 0)
{
notzero = true;
visited[itr->first] = true;
if(itr->first == d) {
depth++;
itr->second = 20;
return true;
}
if(findazero == false)
queue.push_back((*itr).first);
}
}
if(notzero && distance(adjL[s].begin(),adjL[s].end()) != 0)
depth++;
}
depth = 0;
delete[](visited);
return false;
}
void attacktwo(vector<list<pair<int, int> > > &adjL)
{
if(globalmaxflow != 0)
{
vecerase(adjL, globallocation_delete, globalsource_delete);
// cout <<"Looking for1: "<<globallocation_delete<<endl;
// cout <<"Starting at1: "<<globalsource_delete<<endl;
}
}
void randomattack(vector<list<pair<int, int> > > adjL, int V) {
vecerase(adjL, rand() % V, rand() % V);
}
// Prints all paths from 's' to 'd'
void printAllPaths(vector<list<pair<int, int> > > adjL, int s, int d, int V, vector<int> &cp, bool getpath)
{
// Mark all the vertices as not visited
bool *visited = new bool[V];
// Create an array to store paths
int *path = new int[V];
int path_index = 0; // Initialize path[] as empty
// Initialize all vertices as not visited
for (int i = 0; i < V; i++)
visited[i] = false;
// Call the recursive helper function to print all paths
if(getpath)
cp.clear();
printAllPathsUtil(adjL, s, d, visited, path, path_index, 20, cp ,getpath);
}
// A recursive function to print all paths from 'u' to 'd'.
// visited[] keeps track of vertices in current path.
// path[] stores actual vertices and path_index is current
// index in path[]
void printAllPathsUtil(vector<list<pair<int, int> > > adjL, int u, int d, bool visited[],
int path[], int &path_index, int weight, vector<int> &cp, bool getpath)
{
// Mark the current node and store it in path[]
visited[u] = true;
if(!adjL[cp[u]].empty() && getpath) {
// cout <<"in here"<<endl;
path[path_index] = u;
// cout <<"Gets here"<<endl;
// cout <<"Gets here2"<<endl;
path_index++;
}
// If current vertex is same as destination, then print
// current path[]
if (u == d)
{
cp.clear();
for (int i = 0; i < path_index; i++)
cp.push_back(path[i]);
return;
}
// }
else // If current vertex is not destination
{
// Recur for all the vertices adjacent to current vertex
list< pair<int, int> >::iterator i = adjL[u].begin();
for (i = adjL[u].begin(); i != adjL[u].end(); ++i)
if (!visited[i->first])
printAllPathsUtil(adjL, i->first, d, visited, path, path_index, i->second, cp, getpath);
}
}
void attackone(vector<list<pair<int, int> > > &adjL, int s, int d, int V, vector<int> &cp) {
// //i is what it is looking for
// //s is the position it starts from
// void vecerase(vector< list< pair<int, int> > >& adjList, int i, int s)
list<pair<int, int>>::iterator itr = adjL[cp[2]].begin();
// cout << "SOURCE: " << cp[2] << endl;
// cout << "DEST: " << itr->first << endl;
if(itr->first == 0){}
else
vecerase(adjL, cp[2], cp[1]);
}
void getmaxflow(vector<list<pair<int, int> > > adjL, vector<int> &cp)
{
globalmaxflow = 0;
int tempflow;
bool findsnothing = false;
for(int i = 0; i < cp.size(); i++)
{
list< pair<int, int> >::iterator itr;
for(itr = adjL[cp[i]].begin(); itr != adjL[cp[i]].end(); ++itr)
{
// cout <<"Itr first value: "<<itr->first<<endl;
// cout <<"CP I+1 value: "<<cp[i + 1]<<endl;
if (itr->first != cp[i + 1])
findsnothing = true;
if(itr->first == cp[i + 1] || i == cp.size() - 1) {
findsnothing = false;
tempflow = globalmaxflow;
globalmaxflow = max(globalmaxflow, itr->second);
if(tempflow != globalmaxflow)
{
globallocation_delete = itr->first;
globalsource_delete = cp[i];
}
}
}
}
if(findsnothing) {
globalmaxflow = 0;
cp.clear();
}
}