aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/StdVector
Commit message (Collapse)AuthorAge
* bug #1389: MSVC's std containers do not properly align in 64 bits mode if ↵Gravatar Gael Guennebaud2017-02-03
| | | | the requested alignment is larger than 16 bytes (e.g., with AVX)
* Introduce unified macros to identify compiler, OS, and architecture. They ↵Gravatar Gael Guennebaud2014-11-04
| | | | are all defined in util/Macros.h and prefixed with EIGEN_COMP_, EIGEN_OS_, and EIGEN_ARCH_ respectively.
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* Fixed two bad errors on std::vector.Gravatar Hauke Heibel2010-04-21
| | | | | First, MSVC 2010 does not ship a 'fixed'/'adapted' STL. Second, only under very rare cases we do not even need the aligned_allocator.
* Fixed indentation and removed debug code.Gravatar Hauke Heibel2010-04-18
|
* Added support for STL lists with aligned Eigen types.Gravatar Hauke Heibel2010-04-18
|
* Added EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION macro including unit tests and ↵Gravatar Hauke Heibel2010-01-27
| | | | documentation.
* added comments to help vim understand the header files are c++.Gravatar Mark Borgerding2009-12-01
|
* fix compilation with gcc 4.1. Indeed the path for recent gcc doesn't work ↵Gravatar Benoit Jacob2009-08-21
| | | | with gcc 4.1, and looking at the implementation of vector in g++ 4.1, it was exactly our fallback case, so use that.
* remove sentence "Eigen itself is part of the KDE project."Gravatar Benoit Jacob2009-05-22
| | | | it never made very precise sense. but now does it still make any?
* CREDIT Hauke Heibel, more std::vector::insert fixesGravatar Benoit Jacob2009-05-07
|
* add copyright on two public headers that are not so trivial...Gravatar Benoit Jacob2009-05-06
|
* add missing function, thanks to Hauke HeibelGravatar Benoit Jacob2009-05-06
|
* * update BVH to explicitely use aligned_allocatorGravatar Gael Guennebaud2009-04-23
| | | | * fix warning in StdVector
* add a generic version of std::vector::resize for other stlGravatar Gael Guennebaud2009-04-21
| | | | implementations
* std::vector now explicitely requires the use of Eigen::aligned_allocatorGravatar Gael Guennebaud2009-04-21
| | | | CREDIT Hauke Heibel
* add missing vector ctor reported by Markus Moll on the MLGravatar Gael Guennebaud2009-04-21
|
* this should fix the linking issue with StdVector without any userGravatar Gael Guennebaud2009-04-21
| | | | changes... I cross my fingers...
* fix ctor issues with ei_workaround_msvc_std_vectorGravatar Gael Guennebaud2009-04-21
|
* more fixes in StdVector, sorry for the noiseGravatar Gael Guennebaud2009-02-07
|
* disable vector::resize() workaround for gcc < 4.1 (they already use a constGravatar Gael Guennebaud2009-02-07
| | | | reference)
* arf... s/_MSVC_VER/_MSC_VERGravatar Gael Guennebaud2009-02-07
|
* little fix in new StdVectorGravatar Gael Guennebaud2009-02-07
|
* * allow Matrix to be resized to 0 (solve a lot of troubles withGravatar Gael Guennebaud2009-02-07
| | | | | | some containers) * new workaround for std::vector which is supposed to work for any classes having EIGEN_MAKE_ALIGNED_OPERATOR_NEW as discussed on ML
* * move cwise *= and /= to Core (like * and /)Gravatar Benoit Jacob2009-01-12
| | | | | * tidy the StdVector module * fix warnings (especially a | instead of ||) in stdvector test
* make the std::vector fix work also with dynamic size Eigen objects, e.g.Gravatar Benoit Jacob2009-01-10
| | | | | std::vector<VectorXd> update unit test
* Based on code + help from Alex Stapleton:Gravatar Benoit Jacob2009-01-09
*Add Eigen/StdVector header. Including it #includes<vector> and "Core" and generates a partial specialization of std::vector<T> for T=Eigen::Matrix<...> that will work even with vectorizable fixed-size Eigen types (working around a design issue in the c++ STL) *Add unit-test CCMAIL: alex.stapleton@gmail.com