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 "base_decoupled_controller.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< ControlSolver >(const ControlParameters &)>, std::less<> > controller_map
 

Variable Documentation

◆ controller_map

const std::map<std::string, std::function<std::shared_ptr<ControlSolver>(const ControlParameters&)>, std::less<> > controller_map
Initial value:
= {{"decoupled",
[](const ControlParameters& params) -> std::shared_ptr<ControlSolver> {
return std::make_shared<DecoupledController>(params);
}}}

Definition at line 15 of file map.hpp.