m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2016-12-28 12:09:54 -0500
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2016-12-28 12:09:54 -0500
commit1642694926ecdeb58869a46f9b5215170653b521 (patch)
tree25e470a2f28a45b823b2147debeb0bd8ad80eb50 /src
Initial commit
Diffstat (limited to 'src')
-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;
+}