Skip to content

Commit d520f62

Browse files
committed
Removing smooth tag from SBPL trajectory
1 parent c706d04 commit d520f62

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/prpy/planning/sbpl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929
# POSSIBILITY OF SUCH DAMAGE.
3030

31-
from ..util import SetTrajectoryTags
32-
from base import BasePlanner, PlanningError, PlanningMethod, UnsupportedPlanningError, Tags
31+
from base import BasePlanner, PlanningError, PlanningMethod, UnsupportedPlanningError
3332
import openravepy
3433

3534
class SBPLPlanner(BasePlanner):
@@ -109,6 +108,5 @@ def PlanToBasePose(self, robot, goal_pose, timelimit=60.0, return_first=False, *
109108
if status not in [ PlannerStatus.HasSolution, PlannerStatus.InterruptedWithSolution ]:
110109
raise PlanningError('Planner returned with status {0:s}.'.format(str(status)))
111110

112-
SetTrajectoryTags(traj, {Tags.SMOOTH: True}, append=True)
113111
return traj
114112

0 commit comments

Comments
 (0)