m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/brandes.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/brandes.cc')
-rw-r--r--src/brandes.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/brandes.cc b/src/brandes.cc
index b855750..7c7d529 100644
--- a/src/brandes.cc
+++ b/src/brandes.cc
@@ -1,5 +1,9 @@
+#include <fstream>
#include <iostream>
+#include "parse.h"
+#include "graph.h"
+
int main(int argc, char *argv[]) {
if (argc < 4) {
std::cerr
@@ -8,5 +12,13 @@ int main(int argc, char *argv[]) {
return 1;
}
+ int threads = std::stoi(argv[1]);
+ std::string input_file = argv[2];
+ std::string output_file = argv[3];
+
+ Parser parser(input_file);
+
+ Graph graph = parser.get_graph();
+
return 0;
}