Skip to content

Commit bafde38

Browse files
committed
fix bug
1 parent f4d6cad commit bafde38

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

GEMstack/onboard/planning/route_planning.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import os
66
import numpy as np
77
import yaml
8-
from . import RRT_
8+
from . import RRT
99
import csv
1010

1111

@@ -104,7 +104,7 @@ def generate_route_free_run(current_pose, goal_position, roadgraph, roadgraph_ty
104104
# # Save lane_points
105105
# np.savetxt("lane_points.txt", points, delimiter=',',fmt='%f')
106106

107-
searcher = RRT_.BiRRT(start_pose, goal_pose, all_lane_points, map_boundaries)
107+
searcher = RRT.BiRRT(start_pose, goal_pose, all_lane_points, map_boundaries)
108108
waypoints = []
109109
res = True
110110
for i in range(try_times):

0 commit comments

Comments
 (0)