diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/brandes.cc | 10 |
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; +} |