#include <functional>
#include <map>
#include <unordered_map>
#include <utility>
#include <vector>
#include <Eigen/Core>
#include <Eigen/StdVector>
|
template<typename Key , typename T > |
using | eigen_aligned_std_map = std::map< Key, T, std::less< Key >, Eigen::aligned_allocator< std::pair< Key const, T > >> |
| A std::map that uses Eigen::aligned_allocator so that the contained types may be fixed-size Eigen values. More...
|
|
template<typename Key , typename T > |
using | eigen_aligned_std_unordered_map = std::unordered_map< Key, T, std::hash< Key >, std::equal_to< Key >, Eigen::aligned_allocator< std::pair< Key const, T > >> |
| A std::unordered_map that uses Eigen::aligned_allocator so that the contained types may be fixed-size Eigen values. More...
|
|
template<typename T > |
using | eigen_aligned_std_vector = std::vector< T, Eigen::aligned_allocator< T > > |
| A std::vector that uses Eigen::aligned_allocator so that the contained types may be fixed-size Eigen values. More...
|
|