#include <common/types.hpp>
#include <functional>
#include <vector>
Go to the source code of this file.
|
| template<typename T > |
| std::vector< T > | autoware::motion::planning::parking_planner::operator+ (const std::vector< T > &vector1, const std::vector< T > &vector2) |
| |
| template<typename T > |
| std::vector< T > | autoware::motion::planning::parking_planner::operator* (const T &scalar, const std::vector< T > &vector) |
| |
| template<class X , class U , typename P > |
| X | autoware::motion::planning::parking_planner::RK4 (X x, U u, P p, std::function< X(X, U, P)> f, const float64_t stepsize, const std::size_t steps) |
| | Template for an explicit Runge-Kutta integrator. CasADi has its own, but it for some reason doesn't compose with the IPOPT solver generator :shrug: More...
|
| |
| template<class X , class U > |
| X | autoware::motion::planning::parking_planner::RK4 (X x, U u, std::function< X(X, U)> f, const float64_t stepsize, const std::size_t steps) |
| |