-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.cpp
882 lines (801 loc) · 29.5 KB
/
main.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
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
/***********************************************************************************************************************************************
* This is a software that gives an approximate solution to the graph matching problem by using the *
* IsoRank Algorithm. Created in the summer of 2013 this software was originally written with the *
* intention of being used by the Ferguson group at the Materials Science & Engineering Department at UIUC. *
* *
* *
* For more details on the software (i.e. design decisions, potential bugs etc.) please consult the README file. *
* *
* Contact for Questions: *
* Abhijit Pujare: [email protected] *
* Ali Hajimirza: [email protected] *
* *
* *
* *
* Refs: M. Leordeanu and M. Herbert, "A Spectral Technique for Correspondence Problems Using Pairwise Constraints" *
* Proceedings of the Tenth IEEE International Conference on Computer Vision (ICCV?05) 1550 *
* *
* R. Singh, J. Xu and B. Berger "Global alignment of multiple protein interaction networks with application to functional orthology detection"*
* PNAS 105 35 12763?12768 *
* *
* *
* Special thanks to Dr. Andrew Ferguson and Andrew Long for giving us advice and guidance while creating this software. *
* *
***********************************************************************************************************************************************/
#include <string>
#include <string.h>
#include <iostream>
#include <sstream>
#include <vector>
#include <ctime>
#include "Matrices/SymMatrix.h"
#include "Matrices/DenseMatrix1D.h"
#include "Matrices/MPI_Structs.h"
#include "IsoRank.h"
#ifdef USE_MPI
#include "mpi.h"
#endif
/*
* Path to the graph folders.
* Extension of the files.
* Number of files to read.
*/
std::string G_DIR_PATH = "Sample input/";
std::string G_FILE_EXTENSION = ".dat";
int G_NUMBER_OF_FILES = 2;
/*
*
*/
bool G_USE_ISORANK = true;
bool G_USE_GPGM = false;
int G_GRAPH_MATCHING_ALGORITHM = 0;
bool G_PRINT = false;
bool G_DEBUG = false;
/*
* Preprocessor definitions for the used data type
*/
#if INT_MATRIX
typedef int DataType;
#elif DOUBLE_MATRIX
typedef double DataType;
#elif LONG_DOUBLE
typedef long double DataType;
#else
typedef float DataType;
#endif
/*
* Function prototypes
*/
void parseCommandLineArgs(int argc, char * argv[], int ID);
double timeElapsed(std::clock_t start, std::clock_t end);
/*****************************************************************************************
* Sequential method *
******************************************************************************************/
#if SEQ
/*
* Main function
* @pram int argc
* @pram char** argv
*/
int main(int argc, char * argv[])
{
/*
*Configure the program to use the command line args
*/
srand(time(NULL));
parseCommandLineArgs(argc, argv, 0);
/*
* Timing Variables
*/
std::clock_t time_start;
std::clock_t time_end;
/*
* Input/Result containers
*/
int total_comparisons;
std::vector<IsoRank_Result> isoRank_results;
std::vector<DenseMatrix1D<DataType>* >input_graphs;
if(G_PRINT)
std::cout << "Reading " << G_NUMBER_OF_FILES << " graphs from: " << G_DIR_PATH << std::endl;
std::ostringstream itos_converter;
time_start = std::clock();
/*
* Reading the graphs and storing them
*/
for(int i = 1; i <= G_NUMBER_OF_FILES; i++)
{
try
{
itos_converter << G_DIR_PATH << i << G_FILE_EXTENSION;
input_graphs.push_back(new DenseMatrix1D<DataType>(itos_converter.str()));
itos_converter.str(""); //clearing the stream
itos_converter.clear();
}
catch (std::exception& e)
{
std::cerr <<"Exception: " << e.what() << '\n' << std::endl;
itos_converter.str("");
itos_converter.clear();
}
}
total_comparisons = (0.5*(input_graphs.size()-1)*input_graphs.size());
time_end = std::clock();
if(G_PRINT)
std::cout << input_graphs.size() << " of " << G_NUMBER_OF_FILES << " graphs were successfully read in "
<< timeElapsed(time_start, time_end) << "(ms)." << std::endl;
time_start = std::clock();
for (int i = 0; i < input_graphs.size(); i++)
{
for (int j = i +1; j < input_graphs.size(); j++)
{
try
{
if (G_USE_ISORANK)
{
isoRank_results.push_back(isoRank(*input_graphs[i], *input_graphs[j], G_GRAPH_MATCHING_ALGORITHM));
}
if (G_USE_GPGM)
{
//GPGM(mat1,mat2);
}
}
catch (std::exception& e)
{
std::cerr << " Exception: " << e.what() << std::endl;
}
}
}
time_end = std::clock();
//printing the results
if (G_PRINT)
{
std::cout << "Computed IsoRank successfully for " << G_NUMBER_OF_FILES << " graphs in "
<< timeElapsed(time_start, time_end) << "(ms)." << std::endl;
std::cout << "Frob_norms: ";
for (int i=0; i < isoRank_results.size(); i++)
{
std::cout<< isoRank_results[i].frob_norm << ", ";
}
std::cout<<std::endl;
}
typename std::vector<IsoRank_Result>::iterator res_it;
for ( res_it = isoRank_results.begin() ; res_it < isoRank_results.end(); ++res_it )
{
delete [] res_it->assignments;
}
typename std::vector<DenseMatrix1D<DataType>* >::iterator graph_it;
for ( graph_it = input_graphs.begin() ; graph_it < input_graphs.end(); ++graph_it )
{
delete *graph_it;
}
return 0;
}
/*****************************************************************************************
* Node-pair method *
******************************************************************************************/
#elif NODE_PAIR
/*
* Main function
* @pram int argc
* @pram char** argv
*/
int main(int argc, char * argv[])
{
srand(time(NULL));
/*
* MPI Variables
*/
int num_procs;
int ID;
MPI_Status stat;
/*
* MPI constant Tags
*/
const int MASTER_ID = 0;
const int TAG_1 = 4;
const int TAG_2 = 10;
const int TAG_3 = 15;
/*
* MPI Initialization calls
*/
if (MPI_Init(&argc, &argv) != MPI_SUCCESS)
{
std::cout << "Failed To Initialize MPI" << std::endl;
//MPI_Abort();
}
MPI_Comm_size (MPI_COMM_WORLD, &num_procs);
MPI_Comm_rank (MPI_COMM_WORLD, &ID);
/*
*Configure the program to use the command line args
*/
parseCommandLineArgs(argc, argv, ID);
/*
* Timing Variables
*/
std::clock_t time_start;
std::clock_t time_end;
/*
* Result variables
*/
int total_comparisons;
std::vector<IsoRank_Result> isoRank_results;
//======================================================================*MASTER NODE*==============================================================================
if (ID == MASTER_ID)
{
if(G_PRINT)
std::cout << "Reading " << G_NUMBER_OF_FILES << " graphs from: " << G_DIR_PATH << std::endl;
time_start = std::clock();
std::ostringstream itos_converter;
std::vector<SymMatrix<DataType>* >input_graphs;
/*
* Reading the graphs and storing them
*/
for(int i = 1; i <= G_NUMBER_OF_FILES; i++)
{
try
{
itos_converter << G_DIR_PATH << i << G_FILE_EXTENSION;
input_graphs.push_back(new SymMatrix<DataType>(itos_converter.str()));
itos_converter.str(""); //clearing the stream
itos_converter.clear();
}
catch (std::exception& e)
{
std::cerr <<"Exception: " << e.what() << '\n' << std::endl;
itos_converter.str("");
itos_converter.clear();
}
}
total_comparisons = (0.5*(input_graphs.size()-1)*input_graphs.size());
time_end = std::clock();
if(G_PRINT)
std::cout << input_graphs.size() << " of " << G_NUMBER_OF_FILES << " graphs were successfully read in "
<< timeElapsed(time_start, time_end) << "(ms)." << std::endl;
/*
* Sending the graphs to worker nodes.
*/
time_start = std::clock();
int dest_ID = 1;
int recv_counter = 0;
for (int i = 0; i < input_graphs.size(); i++)
{
for(int j = i + 1; j < input_graphs.size(); j++)
{
// Send a pair of graphs to all the worker nodes
if (dest_ID < num_procs)
{
input_graphs[i]->MPI_Send_Matrix(dest_ID, TAG_1 * dest_ID);
input_graphs[j]->MPI_Send_Matrix(dest_ID, TAG_1 * dest_ID + TAG_2);
if(G_DEBUG)
std::cout <<"Master: sending matrix to ID: " << dest_ID << std::endl;
dest_ID++;
}
// Send additional pairs upon worker node's request
else
{
int dest;
//Recv workers ID
MPI_Recv(&dest, 1, MPI_INT, MPI_ANY_SOURCE, TAG_1 + TAG_2, MPI_COMM_WORLD,&stat);
if(G_DEBUG)
std::cout <<"Master: received request for more graphs from: "<< dest<< std::endl;
//Collect the result from worker
isoRank_results.push_back(MPI_Recv_IsoRank_Result(dest, TAG_1 * dest + TAG_3, stat));
recv_counter++;
if(G_DEBUG)
std::cout <<"Master: results were received "<< dest<< std::endl;
//Send more graphs to worker node
input_graphs[i]->MPI_Send_Matrix(dest, TAG_1 * dest);
input_graphs[j]->MPI_Send_Matrix(dest, TAG_1 * dest + TAG_2);
if(G_DEBUG)
std::cout <<"Master: sending more graphs to: "<< dest<< std::endl;
}
}
}
// Recv the remaining result
while (recv_counter < total_comparisons)
{
int dest;
//Recv workers ID
MPI_Recv(&dest, 1, MPI_INT, MPI_ANY_SOURCE, TAG_1 + TAG_2, MPI_COMM_WORLD,&stat);
if(G_DEBUG)
std::cout <<"Master: received request for more graphs from: "<< dest<< std::endl;
//Collect the result from worker
isoRank_results.push_back(MPI_Recv_IsoRank_Result(dest, TAG_1 * dest + TAG_3, stat));
recv_counter++;
if(G_DEBUG)
std::cout <<"Master: results were received."<< dest<< std::endl;
}
//Terminating the slaves by sending a 0*0 matrix to nodes
for(int i=1; i < num_procs; i++)
{
SymMatrix<DataType> emptyMat(0);
emptyMat.MPI_Send_Matrix (i, TAG_1*i);
emptyMat.MPI_Send_Matrix (i, TAG_1*i+ TAG_2);
if (G_DEBUG)
std::cout <<"Master: sending terminate signal to ID: " << i << std::endl;
}
time_end = std::clock();
//printing the results
if (G_PRINT)
{
std::cout << "Master: Computed IsoRank successfully for " << G_NUMBER_OF_FILES << " graphs in "
<< timeElapsed(time_start, time_end) << "(ms)." << std::endl;
std::cout<< "Master: " <<isoRank_results.size() << " results were received.\n frob_norms: ";
for (int i=0; i < isoRank_results.size(); i++)
{
std::cout<< isoRank_results[i].frob_norm << ", ";
}
std::cout<<std::endl;
}
typename std::vector<IsoRank_Result>::iterator res_it;
for ( res_it = isoRank_results.begin() ; res_it < isoRank_results.end(); ++res_it )
{
delete [] res_it->assignments;
}
typename std::vector<SymMatrix<DataType>* >::iterator graph_it;
for ( graph_it = input_graphs.begin() ; graph_it < input_graphs.end(); ++graph_it )
{
delete *graph_it;
}
}
//======================================================================*WORKER NODES*==============================================================================
else
{
while(true)
{
//Recv graphs from the master
DenseMatrix1D<DataType> mat1 (MASTER_ID, TAG_1 * ID ,stat);
DenseMatrix1D<DataType> mat2 (MASTER_ID, TAG_1 * ID + TAG_2 ,stat);
if (G_DEBUG)
std::cout << "Process "<< ID << " : received graphs from master"<< std::endl;
//Terminating the while loop if the matrices are 0*0
if (mat1.getNumberOfRows() == 0 && mat2.getNumberOfRows() == 0)
{
if (G_DEBUG)
std::cout << "Process "<< ID << ": received terminate signal from master"<< std::endl;
break;
}
struct IsoRank_Result result;
try
{
if (G_USE_ISORANK)
{
if (G_DEBUG)
std::cout << "Process " << ID << ": isoRank: started." << std::endl;
result = isoRank(mat1, mat2, G_GRAPH_MATCHING_ALGORITHM);
if (G_DEBUG)
std::cout << "Process " << ID << ": isoRank: end." << std::endl;
}
if (G_USE_GPGM)
{
//GPGM(mat1,mat2);
}
if (G_DEBUG)
std::cout << "Process "<< ID << " :requesting for more graphs from master" << std::endl;
//Sending the ID to master for more graphs
MPI_Send(&ID, 1, MPI_INT, MASTER_ID, TAG_1 + TAG_2, MPI_COMM_WORLD);
if (G_DEBUG)
std::cout << "Process "<< ID << ": :sending result to master" << std::endl;
//Sending results to master
MPI_Send_IsoRank_Result(result, MASTER_ID , TAG_1 * ID + TAG_3);
delete [] result.assignments;
}
catch (std::exception& e)
{
std::cerr << "Process "<< ID << " Exception: " << e.what() << std::endl;
}
}
}
if(G_PRINT)
std::cout << "Process: "<< ID << " terminated." << std::endl;
MPI_Finalize();
return 0;
}
/*****************************************************************************************
* Broadcast_Method *
******************************************************************************************/
#else
/*
* Main function
* @pram int argc
* @pram char** argv
*/
int main(int argc, char * argv[])
{
srand(time(NULL));
/*
* MPI Variables
*/
int num_procs;
int ID;
MPI_Status stat;
/*
* MPI constant Tags
*/
const int MASTER_ID = 0;
const int TAG_1 = 4;
const int TAG_2 = 10;
const int TAG_3 = 15;
/*
* MPI Initialization calls
*/
if (MPI_Init(&argc, &argv) != MPI_SUCCESS)
{
std::cout << "Failed To Initialize MPI" << std::endl;
//MPI_Abort();
}
MPI_Comm_size (MPI_COMM_WORLD, &num_procs);
MPI_Comm_rank (MPI_COMM_WORLD, &ID);
/*
*Configure the program to use the command line args
*/
parseCommandLineArgs(argc, argv, ID);
/*
* Timing Variables
*/
std::clock_t time_start;
std::clock_t time_end;
/*
* Result variables
*/
int total_comparisons;
int number_of_graphs;
std::vector<IsoRank_Result> isoRank_results;
//======================================================================*MASTER NODE*==============================================================================
if (ID == MASTER_ID)
{
if(G_PRINT)
std::cout << "Reading " << G_NUMBER_OF_FILES << " graphs from: " << G_DIR_PATH << std::endl;
time_start = std::clock();
std::ostringstream itos_converter;
std::vector<SymMatrix<DataType>* >input_graphs;
/*
* Reading the graphs and storing them
*/
for(int i = 1; i <= G_NUMBER_OF_FILES; i++)
{
try
{
itos_converter << G_DIR_PATH << i << G_FILE_EXTENSION;
input_graphs.push_back(new SymMatrix<DataType>(itos_converter.str()));
itos_converter.str(""); //clearing the stream
itos_converter.clear();
}
catch (std::exception& e)
{
std::cerr <<"Exception: " << e.what() << '\n' << std::endl;
itos_converter.str("");
itos_converter.clear();
}
}
number_of_graphs = input_graphs.size();
total_comparisons = (0.5*(number_of_graphs-1)*number_of_graphs);
time_end = std::clock();
if(G_PRINT)
std::cout << input_graphs.size() << " of " << G_NUMBER_OF_FILES << " graphs were successfully read in "
<< timeElapsed(time_start, time_end) << "(ms)." << std::endl;
/*
* Sending the graphs to worker nodes.
*/
time_start = std::clock();
MPI_Bcast (&number_of_graphs, 1 , MPI_INT, MASTER_ID, MPI_COMM_WORLD);
if(G_DEBUG)
std::cout <<"Master: sending "<<number_of_graphs << " graphs to all"<< std::endl;
for (int i = 0; i < input_graphs.size(); i++)
{
input_graphs[i]->MPI_Bcast_Send_Matrix(MASTER_ID);
}
/*
* Collecting the results from the worker nodes.
*/
int recv_counter = 0;
while (recv_counter < total_comparisons)
{
int dest;
//Recv workers ID
MPI_Recv(&dest, 1, MPI_INT, MPI_ANY_SOURCE, TAG_1 + TAG_2, MPI_COMM_WORLD,&stat);
if(G_DEBUG)
std::cout <<"Master: received signal to receive result from: "<< dest<< std::endl;
//Collect the result from worker
isoRank_results.push_back(MPI_Recv_IsoRank_Result(dest, TAG_1 * dest + TAG_3, stat));
recv_counter++;
if(G_DEBUG)
std::cout <<"Master: results were received."<< dest<< std::endl;
}
time_end = std::clock();
//printing the results
if (G_PRINT)
{
std::cout << "Master: Computed IsoRank successfully for " << G_NUMBER_OF_FILES << " graphs in "
<< timeElapsed(time_start, time_end) << "(ms)." << std::endl;
std::cout<< "Master: " << isoRank_results.size() << " results were received.\n frob_norms: ";
for (int i=0; i < isoRank_results.size(); i++)
{
std::cout<< isoRank_results[i].frob_norm << ", ";
}
std::cout<<std::endl;
}
typename std::vector<IsoRank_Result>::iterator res_it;
for ( res_it = isoRank_results.begin() ; res_it < isoRank_results.end(); ++res_it )
{
delete [] res_it->assignments;
}
typename std::vector<SymMatrix<DataType>* >::iterator graph_it;
for ( graph_it = input_graphs.begin() ; graph_it < input_graphs.end(); ++graph_it )
{
delete *graph_it;
}
}
//======================================================================*WORKER NODES*==============================================================================
else
{
std::vector<DenseMatrix1D<DataType>* > recv_graphs;
MPI_Bcast (&number_of_graphs, 1, MPI_INT, MASTER_ID, MPI_COMM_WORLD);
for (int i = 0; i < number_of_graphs; i++)
{
recv_graphs.push_back(new DenseMatrix1D<DataType>(MASTER_ID, stat));
}
if (G_DEBUG)
std::cout << "Process "<< ID << " : received " << number_of_graphs << " graphs from master"<< std::endl;
Offset offset;
offset.setValues(ID, num_procs, number_of_graphs);
int A, B;
for (int i = offset.i_start; i <= offset.i_end; i++)
{
if (i == offset.i_start)
{
A = offset.j_start;
}
else
{
A = i+1;
}
if (i == offset.i_end)
{
B = offset.j_end;
}
else
{
B = number_of_graphs - 1;
}
for (int j = A; j <= B; j++)
{
struct IsoRank_Result result;
try
{
if (G_USE_ISORANK)
{
if (G_DEBUG)
std::cout << "Process " << ID << ": isoRank: started." << i << " " << j << std::endl;
result = isoRank(*recv_graphs[i], *recv_graphs[j], G_GRAPH_MATCHING_ALGORITHM);
if (G_DEBUG)
std::cout << "Process " << ID << ": isoRank: end." << std::endl;
}
if (G_USE_GPGM)
{
//GPGM(mat1,mat2);
}
//Sending the ID to master for more graphs
MPI_Send(&ID, 1, MPI_INT, MASTER_ID, TAG_1 + TAG_2, MPI_COMM_WORLD);
if (G_DEBUG)
std::cout << "Process "<< ID << " :sending result to master" << std::endl;
//Sending results to master
MPI_Send_IsoRank_Result(result, MASTER_ID , TAG_1 * ID + TAG_3);
delete []result.assignments;
}
catch (std::exception& e)
{
std::cerr << "Process "<< ID << " Exception: " << e.what() << std::endl;
}
}
}
typename std::vector<DenseMatrix1D<DataType>* >::iterator graph_it;
for ( graph_it = recv_graphs.begin() ; graph_it < recv_graphs.end(); ++graph_it )
{
delete *graph_it;
}
}
if(G_PRINT)
std::cout << "Process: "<< ID << " terminated." << std::endl;
MPI_Finalize();
return 0;
}
#endif
/*
* Calculates the time elapsed
* @pram std::clock_t start_time
* @pram std::clock_t end_time
*/
double timeElapsed(std::clock_t start, std::clock_t end)
{
return (double) (end - start) / CLOCKS_PER_SEC * 1000.0;
}
/*
* This method Configures the setting of the program according to the command line agrs.
* @pram int argc
* @pram char** argv
* @pram int processor ID: Only ID == 0 will print to the console
*/
void parseCommandLineArgs(int argc,char* argv[], int ID)
{
if (ID == 0)
{
std::cout << "\n\nReading command line arguments..." << std::endl;
if ( argc < 2)
{
std::cout <<"No arguments were passed." << std::endl;
}
}
try
{
for (int i = 1; i < argc; i++)
{
//changing the folder directory
if (std::strncmp(argv[i], "-dir",4) == 0)
{
i++;
G_DIR_PATH = std::string(argv[i]);
if (ID == 0)
std::cout << "Working directory was set to: " << G_DIR_PATH << std::endl;
}
//changing the extension of the file
else if (std::strncmp(argv[i], "-ext",4) == 0)
{
i++;
G_FILE_EXTENSION = std::string(argv[i]);
if (ID == 0)
std::cout << "File extension was set to: " << G_FILE_EXTENSION << std::endl;
}
//changing the number of files to be read
else if (std::strncmp(argv[i], "-num_files",10) == 0)
{
i++;
int input_number = atoi(argv[i]);
if ( input_number > 0)
{
G_NUMBER_OF_FILES = input_number;
if (ID == 0)
std::cout << "Number of files was set to: " << G_NUMBER_OF_FILES << std::endl;
}
// the input is not a number or it's an invalid number
else
{
if (ID == 0)
std::cout << "'" << argv[i] << "' is not a valid number." << std::endl;
}
}
//changing the Graph Matching algorithm
else if (std::strncmp(argv[i], "-alg",4) == 0)
{
i++;
//choosing IsoRnak
if (std::strncmp(argv[i], "isorank",7) == 0)
{
G_USE_ISORANK = true;
if (ID == 0)
std::cout << "Algorithm was set to IsoRank." << std::endl;
}
//choosing GPGM
else if (std::strncmp(argv[i], "gpgm",4) == 0)
{
G_USE_GPGM = true;
G_USE_ISORANK = false;
if (ID == 0)
std::cout << "Algorithm was set to GPGM." << std::endl;
}
//case of invalid pram for algorithm
else
{
if (ID == 0)
std::cout << "Algorithm '" << argv [i] << "' is not a valid algorithm." << std::endl;
}
}
//changing the score matching algorithm
else if (std::strncmp(argv[i], "-match_alg",7) == 0)
{
i++;
//choosing greedy
if (std::strncmp(argv[i], "greedy",6) == 0)
{
G_GRAPH_MATCHING_ALGORITHM = 0;
if (ID == 0)
std::cout << "Matching algorithm was set to greedy." << std::endl;
}
//choosing connectivity enforcement 1
else if (std::strncmp(argv[i], "con_enf_1", 9) == 0)
{
G_GRAPH_MATCHING_ALGORITHM = 1;
if (ID == 0)
std::cout << "Matching algorithm was set to connectivity enforcement 1." << std::endl;
}
//choosing connectivity enforcement 2
else if (std::strncmp(argv[i], "con_enf_2", 9) == 0)
{
G_GRAPH_MATCHING_ALGORITHM = 2;
if (ID == 0)
std::cout << "Matching algorithm was set to connectivity enforcement 2." << std::endl;
}
//choosing connectivity enforcement 3
else if (std::strncmp(argv[i], "con_enf_3", 9) == 0)
{
G_GRAPH_MATCHING_ALGORITHM = 3;
if (ID == 0)
std::cout << "Matching algorithm was set to connectivity enforcement 3." << std::endl;
}
//choosing connectivity enforcement 4
else if (std::strncmp(argv[i], "con_enf_4", 9) == 0)
{
G_GRAPH_MATCHING_ALGORITHM = 4;
if (ID == 0)
std::cout << "Matching algorithm was set to connectivity enforcement 4." << std::endl;
}
// invalid pram for matching algorithm
else
{
if (ID == 0)
std::cout << "Algorithm '" << argv [i] << "' is not a valid algorithm." << std::endl;
}
}
//Print to console
else if (std::strncmp(argv[i], "-print", 6) == 0)
{
G_PRINT = true;
if (ID == 0)
std::cout << "Printing to console: enabled."<< std::endl;
}
//Print debug to console
else if (std::strncmp(argv[i], "-debug", 6) == 0)
{
G_DEBUG = true;
if (ID == 0)
std::cout << "Debug prints: enabled."<< std::endl;
}
// invalid pram
else
{
if (ID == 0)
std::cout << "Arg '" << argv [i] << "' is not a valid argument." << std::endl;
}
}
if (ID == 0)
{
std::cout << "\n\n" <<"Program configuration: " << std::endl;
std::cout << "Working directory: '" << G_DIR_PATH << "'" << std::endl;
std::cout << "File Extension: '" << G_FILE_EXTENSION << "'" << std::endl;
std::cout << "Number of graphs to read: " << G_NUMBER_OF_FILES << std::endl;
if (G_USE_ISORANK)
{
std::cout << "Graph matching algorithm: IsoRank." << std::endl;
std::string assignment_app;
switch (G_GRAPH_MATCHING_ALGORITHM)
{
case 0:
assignment_app = "Greedy.";
break;
case 1:
assignment_app = "Connectivity Enforcement 1.";
break;
case 2:
assignment_app = "Connectivity Enforcement 2.";
break;
case 3:
assignment_app = "Connectivity Enforcement 3.";
break;
case 4:
assignment_app = "Connectivity Enforcement 4.";
}
std::cout << "Assignment approach: "<< assignment_app << std::endl;
}
else if (G_USE_GPGM)
{
std::cout << "Graph matching algorithm: GPGM." << std::endl;
}
std::cout << '\n' << std::endl;
}
}
catch(std::exception e)
{
std::cout << "An error occurred during parsing the command line arguments.\n" << e.what() << "\nTerminating the program ...."<< std::endl;
std::terminate();
}
}