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.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/brandes.cc b/src/brandes.cc
new file mode 100644
index 0000000..7e8870d
--- /dev/null
+++ b/src/brandes.cc
@@ -0,0 +1,10 @@
+#include <cstdio>
+
+int main(int argc, char *argv[]) {
+ if (argc < 4) {
+ fprintf(stderr, "USAGE: ./brandes <number-threads> <input-file> <output-file>\n");
+ return 1;
+ }
+
+ return 0;
+}