Skip to content

Commit

Permalink
docs: clean up documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SS47816 committed Mar 1, 2022
1 parent eb96626 commit ae6e8ac
Show file tree
Hide file tree
Showing 36 changed files with 288 additions and 576 deletions.
31 changes: 13 additions & 18 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ find_package(catkin REQUIRED COMPONENTS
nav_msgs
geometry_msgs
autoware_msgs
message_generation
visualization_msgs
dynamic_reconfigure
tf
tf2_ros
Expand Down Expand Up @@ -55,12 +55,9 @@ find_package(catkin REQUIRED COMPONENTS
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)

## Generate messages in the 'msg' folder
add_message_files(
FILES
LaneInfo.msg
SpecialWaypointArray.msg
Waypoint.msg
)
# add_message_files(
# FILES
# )

## Generate services in the 'srv' folder
# add_service_files(
Expand All @@ -77,12 +74,12 @@ add_message_files(
# )

## Generate added messages and services with any dependencies listed here
generate_messages(
DEPENDENCIES
std_msgs
geometry_msgs
nav_msgs
)
# generate_messages(
# DEPENDENCIES
# std_msgs
# geometry_msgs
# nav_msgs
# )

################################################
## Declare ROS dynamic reconfigure parameters ##
Expand Down Expand Up @@ -115,7 +112,7 @@ generate_dynamic_reconfigure_options(
catkin_package(
INCLUDE_DIRS include
LIBRARIES frenet_optimal_planner
CATKIN_DEPENDS roscpp rospy std_msgs message_runtime
CATKIN_DEPENDS roscpp rospy std_msgs
DEPENDS system_lib
)

Expand Down Expand Up @@ -159,17 +156,15 @@ add_library(${PROJECT_NAME}
include/${PROJECT_NAME}/vehicle.cc
include/${PROJECT_NAME}/sat_collision_checker.h
include/${PROJECT_NAME}/sat_collision_checker.cc
include/${PROJECT_NAME}/behaviour.h
include/${PROJECT_NAME}/behaviour.cc
include/${PROJECT_NAME}/visualization.cpp
include/${PROJECT_NAME}/visualization.hpp
include/${PROJECT_NAME}/frenet_optimal_trajectory_planner.h
include/${PROJECT_NAME}/frenet_optimal_trajectory_planner.cc
)

## Add cmake target dependencies of the library
## as an example, code may need to be generated before libraries
## either from message generation or dynamic reconfigure
add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS} ${PROJECT_NAME}_generate_messages_cpp)
add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})

## Declare a C++ executable
## With catkin_make all packages are built within a single CMake context
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frenet_optimal_planner

Implementation of Frenet Optimal Planning Algorithm in ROS
Implementation of the Frenet Optimal Planning Algorithm in ROS
The original paper "Optimal trajectory generation for dynamic street scenarios in a Frenét Frame" can be found [here](https://ieeexplore.ieee.org/document/5509799)

[![CodeFactor](https://www.codefactor.io/repository/github/ss47816/lgsvl_utils/badge)](https://www.codefactor.io/repository/github/ss47816/lgsvl_utils)
![Code Grade](https://api.codiga.io/project/30669/status/svg)
Expand Down
251 changes: 0 additions & 251 deletions include/frenet_optimal_planner/behaviour.cc

This file was deleted.

Loading

0 comments on commit ae6e8ac

Please sign in to comment.