Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed option for setting the max number of task steps from -s to -z. #15

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/tmsmt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Options:
-g <scene-file> Goal scene file
-o <output-plan-file> Output plan file
-q <plan-file> Initial configuration
-s <max-steps> Maximum number of task steps
-z, --steps <max-steps> Maximum number of task steps
-m <motion-timeout> Initial motion planning timeout
-r <resolution> Discretization resolution
-T <times-file> Append timing data to times-file
Expand Down Expand Up @@ -145,7 +145,7 @@ EOF
shift;
export TMSMT_RESOLUTION="$1"
;;
-s|--steps)
-z|--steps)
shift;
export TMSMT_MAX_STEPS="$1"
;;
Expand Down