robotoc
robotoc - efficient ROBOT Optimal Control solvers
Loading...
Searching...
No Matches
aligned_deque.hpp
Go to the documentation of this file.
1#ifndef ROBOTOC_ALIGNED_DEQUE_HPP_
2#define ROBOTOC_ALIGNED_DEQUE_HPP_
3
4#include <deque>
5#include "Eigen/StdDeque"
6
7namespace robotoc {
8
13template <typename T>
14using aligned_deque = std::deque<T, Eigen::aligned_allocator<T>>;
15
16} // namespace robotoc
17
18#endif // ROBOTOC_ALIGNED_DEQUE_HPP_
Definition: constraint_component_base.hpp:17
std::deque< T, Eigen::aligned_allocator< T > > aligned_deque
std deque with Eigen::aligned_allocator.
Definition: aligned_deque.hpp:14