Skip to content

Commit b000916

Browse files
committed
pre commit
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent 343a431 commit b000916

File tree

3 files changed

+168
-8
lines changed

3 files changed

+168
-8
lines changed

planning/behavior_path_goal_planner_module/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ package goal_planner{
2929
class FreeSpacePullOver {}
3030
}
3131
32-
class GoalSeacher {}
32+
class GoalSearcher {}
3333
3434
struct GoalCandidates {}
3535
struct PullOverPath{}
3636
3737
abstract class PullOverPlannerBase {}
38-
abstract class GoalSeacherBase {}
38+
abstract class GoalsearcherBase {}
3939
4040
}
4141
@@ -62,7 +62,7 @@ package freespace_planning_algorithms
6262
ShiftPullOver --|> PullOverPlannerBase
6363
GeometricPullOver --|> PullOverPlannerBase
6464
FreeSpacePullOver --|> PullOverPlannerBase
65-
GoalSeacher --|> GoalSeacherBase
65+
GoalSearcher --|> GoalSearcherBase
6666
DefaultFixedPlanner --|> FixedGoalPlannerBase
6767
6868
PathShifter --o ShiftPullOver
@@ -71,11 +71,11 @@ AstarSearch --o FreeSpacePullOver
7171
RRTStar --o FreeSpacePullOver
7272
7373
PullOverPlannerBase --o GoalPlannerModule
74-
GoalSeacherBase --o GoalPlannerModule
74+
GoalSearcherBase --o GoalPlannerModule
7575
FixedGoalPlannerBase --o GoalPlannerModule
7676
7777
PullOverPath --o PullOverPlannerBase
78-
GoalCandidates --o GoalSeacherBase
78+
GoalCandidates --o GoalSearcherBase
7979
8080
@enduml
8181
```
@@ -85,7 +85,7 @@ GoalCandidates --o GoalSeacherBase
8585
### fixed_goal_planner
8686

8787
This is a very simple function that draws a smooth path to a specified goal. This function does not require approval and always runs with the other modules.
88-
_NOTE: this planner does not perform the several features described below, such as "goal seach", "collision check", "safety check", etc._
88+
_NOTE: this planner does not perform the several features described below, such as "goal search", "collision check", "safety check", etc._
8989

9090
Executed when both conditions are met.
9191

planning/behavior_path_goal_planner_module/images/goal_planner-deciding_path.drawio.svg

+118-1
Loading

planning/behavior_path_goal_planner_module/images/goal_planner-safety_check.drawio.svg

+44-1
Loading

0 commit comments

Comments
 (0)