Skip to content

Commit

Permalink
Fix rovers usage string (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
guicho271828 authored Jun 8, 2024
1 parent 93b7b56 commit f8ee271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions rovers/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gmon.out
2 changes: 1 addition & 1 deletion rovers/rovgen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ ostream & operator<<(ostream& o,const RoverDom & d)
void usage(int u)
{
cout << u;
cout << "Useage: rovergen [-s|-t|-n|-u|-f <filename>]\n\t\t<seed> <#rovers> <#waypoints> <#objectives> <#cameras> <#n-goals> \n\n\tOptions:\n\tu: untyped version\n\ts: simple-time\n\tt: time\n\tn: numeric\n\tf: optional file for output\n\n\tAll numbers are integers.\n\n";
cout << "Usage: rovgen [-s|-t|-n|-u|-f <filename>]\n\t\t<seed> <#rovers> <#waypoints> <#objectives> <#cameras> <#n-goals> \n\n\tOptions:\n\tu: untyped version\n\ts: simple-time\n\tt: time\n\tn: numeric\n\tf: optional file for output\n\n\tAll numbers are integers.\n\n";

exit(0);
};
Expand Down

0 comments on commit f8ee271

Please sign in to comment.