File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -292,14 +292,15 @@ ConstraintSetPtr_t Edge::buildPathConstraint() {
292292
293293 // Build steering method
294294 const ProblemPtr_t& problem (g->problem ());
295- SteeringMethodPtr_t manipSteeringMethod = problem->manipulationSteeringMethod ();
295+ SteeringMethodPtr_t manipSteeringMethod =
296+ problem->manipulationSteeringMethod ();
296297 if (!manipSteeringMethod) {
297- throw std::logic_error (" Edge::buildPathConstraint: steering method of manipulation::Problem is"
298- " not of type manipulation::SteeringMethod.\n You probably changed the "
299- " default one." );
298+ throw std::logic_error (
299+ " Edge::buildPathConstraint: steering method of manipulation::Problem is"
300+ " not of type manipulation::SteeringMethod.\n You probably changed the "
301+ " default one." );
300302 }
301- steeringMethod_ =
302- manipSteeringMethod->innerSteeringMethod ()->copy ();
303+ steeringMethod_ = manipSteeringMethod->innerSteeringMethod ()->copy ();
303304 steeringMethod_->constraints (constraint);
304305 // Build path validation and relative motion matrix
305306 // TODO this path validation will not contain obstacles added after
You can’t perform that action at this time.
0 commit comments