Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
map.hpp File Reference
#include <map>
#include <memory>
#include <string>
#include "pure_pursuit.hpp"
Include dependency graph for map.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Variables

const std::map< std::string, std::function< std::shared_ptr< LateralController >(const ControlParameters &)>, std::less<> > lateral_controller_map
 

Variable Documentation

◆ lateral_controller_map

const std::map<std::string, std::function<std::shared_ptr<LateralController>(const ControlParameters&)>, std::less<> > lateral_controller_map
Initial value:
= {
{"pure_pursuit",
[](const ControlParameters& params) -> std::shared_ptr<LateralController> {
return std::make_shared<PurePursuit>(params);
}},
}

Definition at line 15 of file map.hpp.