usage.h
Go to the documentation of this file.
1 #include <iostream>
2 
3 #ifndef USAGE_H
4 #define USAGE_H
5 
6 // Print correct usage to command line
7 static void usage() {
8  printf("Usage: ./tsp inputfile\n");
9  printf("where inputfile is in the format:\n");
10  printf(" 0 x-coord y-coord\n");
11  printf(" 1 x-coord y-coord\n");
12  printf(" .\n .\n .\n");
13  printf(" n-1 x-coord y-coord\n");
14  printf("and n is the number of cities\n");
15  printf("\n");
16 }
17 
18 #endif
static void usage()
Definition: usage.h:7


co_scan
Author(s):
autogenerated on Mon Feb 28 2022 23:00:56