Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyZe committed Feb 21, 2023
1 parent 0b9fdf4 commit a004e81
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions moveit_core/trajectory_processing/src/ruckig_traj_smoothing.cpp
Expand Up @@ -79,12 +79,6 @@ bool RuckigSmoothing::applySmoothing(robot_trajectory::RobotTrajectory& trajecto
return false;
}

// auto ruckig_result = runRuckigInBatches(trajectory, ruckig_input);
// if (ruckig_result.has_value())
// {
// trajectory = ruckig_result.value();
// }
// return ruckig_result.has_value(); // Ruckig failed to smooth the trajectory
return runRuckig(trajectory, ruckig_input);
}

Expand Down Expand Up @@ -143,12 +137,6 @@ bool RuckigSmoothing::applySmoothing(robot_trajectory::RobotTrajectory& trajecto
}
}

// auto ruckig_result = runRuckigInBatches(trajectory, ruckig_input);
// if (ruckig_result.has_value())
// {
// trajectory = ruckig_result.value();
// }
// return ruckig_result.has_value(); // Ruckig failed to smooth the trajectory
return runRuckig(trajectory, ruckig_input);
}

Expand Down

0 comments on commit a004e81

Please sign in to comment.