Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Jul 4, 2022
1 parent d3a9552 commit 06dd2dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Write me!

![selfdriving-architecture](selfdriving-architecture.png)

selfdriving::TPS_RRTstar: Implements the RRT* algorithm itself.
selfdriving::TPS_Astar: Implements the A* algorithm itself.
2 changes: 1 addition & 1 deletion doc/source/mainpage.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Template mainpage.md, to which the README.md will be appended during "make"
of Sphinx docs.
-->

\mainpage Self-driving RRT*-based C++ library
\mainpage Self-driving A*-based C++ library

- [Git repository](https://github.com/jlblancoc/selfdriving)
- \ref overview_page
5 changes: 3 additions & 2 deletions libselfdriving/include/selfdriving/algos/WaypointSequencer.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct NavErrorReason

/** The top-level interface for users to control the vehicle navigation.
*
* This class is based and extends `mrpt::nav::CAbstractNavigator` with the
* This class is based and extends `mrpt::nav::CAbstractNavigator` with the
* capability of following a list of waypoints. By default, waypoints are
* followed one by one, but, refer to \c Waypoint for a discussion on
* `allow_skip`.
Expand All @@ -60,7 +60,8 @@ struct NavErrorReason
* - \c initialize() must be called before running any actual navigation.
*
* - Callbacks must be provided for interfacing the real (or simulated)
* robot/vehicle. They are given as arguments to \c initialize().
* robot/vehicle and its sensors. They must be provided as std::function<>
* instances within \c config_. Note they may be actual functions, or lambdas.
*
* - \c navigation_step() must be called periodically in order to effectively
* run the navigation. This method will internally call the callbacks to gather
Expand Down

0 comments on commit 06dd2dd

Please sign in to comment.