aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/PlainObjectBase.h
Commit message (Collapse)AuthorAge
* Make constructors explicit if they could lead to unintended implicit conversionGravatar Christoph Hertzberg2014-09-23
|
* Remove double return statement in PlainObjectBase::_set()Gravatar Jitse Niesen2014-09-19
|
* bug #100: add support for explicit scalar to Array conversion (as enable ↵Gravatar Gael Guennebaud2014-09-19
| | | | implicit conversion is much more tricky)
* Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
|
* merge default branchGravatar Gael Guennebaud2014-08-29
|\
| * Fix bug #850: workaround MSVC 2008 weird compilation bugGravatar Gael Guennebaud2014-08-02
| |
| * Ambiguous call fixes for clang.Gravatar Gael Guennebaud2014-07-22
| |
| * Workaround ambiguous call of init1 with MSVC.Gravatar Gael Guennebaud2014-07-22
| |
| * Extend fixed-size ctor unit test and fix conversion warning.Gravatar Gael Guennebaud2014-07-22
| |
* | merge with default branchGravatar Gael Guennebaud2014-07-10
|\ \
| | * bug #826: fix 64 to 32 bits conversion warning when calling ↵Gravatar Gael Guennebaud2014-07-20
| |/ | | | | | | Matrix<int,1,1>(long)
| * Fix regression introduced by 3117036b80075390dbc46f60aa0d595e5a44661bGravatar Christoph Hertzberg2014-07-04
| | | | | | | | | | : Matrix<Scalar,1,1>(int) did not compile if Scalar is not constructible from int. Now this falls back to the (Index size) constructor.
* | merge with default branchGravatar Gael Guennebaud2014-07-02
|\|
| * Fix bug #826: Allow initialization of 1x1 Arrays/Matrices by passing a value.Gravatar Christoph Hertzberg2014-06-23
| |
* | Fix a few regression when moving the flagsGravatar Gael Guennebaud2014-03-12
| |
* | New design for handling automatic transpositionGravatar Gael Guennebaud2014-02-18
| |
* | Deal with automatic transposition in call_assignment, fix a few shortcomingsGravatar Gael Guennebaud2014-02-17
|/
* merge with default branchGravatar Gael Guennebaud2013-11-05
|\
* | Allow .conservativeResize(rows,cols) on vectorsGravatar Gael Guennebaud2013-10-16
| |
* | Added move support for Matrix and Array.Gravatar Hauke Heibel2013-08-02
| | | | | | | | | | | | Added EIGEN_HAVE_RVALUE_REFERENCES define. Added move unit tests. Removed superfluous 'inline' declarations in DenseStorage.
| * Add nvcc support for small eigenvalues decompositions and workaround lack of ↵Gravatar Gael Guennebaud2013-08-01
| | | | | | | | support for std::swap and std::numeric_limits
| * merge with main branchGravatar Gael Guennebaud2013-07-17
| |\ | |/ |/|
* | Remove meaningless explicit qualifierGravatar Gael Guennebaud2013-06-12
| |
| * Add nvcc support for normalize, initializers, and fuzzy comparisonsGravatar Gael Guennebaud2013-06-05
| |
| * merge with default branchGravatar Gael Guennebaud2013-04-19
| |\ | |/ |/|
* | Fix EIGEN_INITIALIZE_MATRICES_BY_NAN.Gravatar Sebastien Barthelemy2013-02-22
| |
| * Add support for NVCC5: most of the Core and part of LU are callable from ↵Gravatar Gael Guennebaud2013-02-07
| | | | | | | | | | | | CUDA code. Still a lot to do.
* | add EIGEN_INITIALIZE_MATRICES_BY_NANGravatar Gael Guennebaud2013-02-07
|/
* Fix bug #507: Mark variable as unused in NDEBUG caseGravatar Christoph Hertzberg2012-12-20
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* fix performance regression due to check_rows_cols_for_overflow and add ↵Gravatar Gael Guennebaud2012-06-26
| | | | | | appropriate assertions in the PlainObjectBase::resize() functions. The fix consists in disabling this useless test for statically allocated objects.
* fix most of the shadow warnings in Core/*.hGravatar Gael Guennebaud2012-06-22
|
* Fixed RVCT 3.1 compiler errors.Gravatar williami2012-06-04
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* fix static inline versus inline static issues (the former is the correct order)Gravatar Gael Guennebaud2012-01-31
|
* workaround doxygen limitation to follow the base class of PlainObjectBaseGravatar Gael Guennebaud2011-12-19
|
* Alignment fixes:Gravatar Benoit Jacob2011-11-22
| | | | | | * Fix AlignedBit computation for Plain Objects * use it for the conditional alignment of operator new * only overload new in PlainObjectBase, don't overload again in Matrix and Array
* Refactor force-inlining macros and use EIGEN_ALWAYS_INLINE to force inlining ↵Gravatar Benoit Jacob2011-11-06
| | | | of the integer overflow helpers, whose non-inlining caused major performance problems, see the mailing list thread 'Significant perf regression probably due to bug #363 patches'
* In the Matrix constructor taking (rows, cols), statically assert that the ↵Gravatar Benoit Jacob2011-11-05
| | | | | | types are integer. The 2D vector ctor taking (x, y) is not concerned.
* The most important inline keyword ever? Without it, gcc failed to inline ↵Gravatar Benoit Jacob2011-10-25
| | | | this function, which is called by all matrix constructors...
* Throw std::bad_alloc even when exceptions are disabled, by doing new ↵Gravatar Benoit Jacob2011-10-17
| | | | | | | int[size_t(-1)]. Don't throw exceptions on aligned_malloc(0) (just because malloc's retval is null doesn't mean error, if size==0). Remove EIGEN_NO_EXCEPTIONS option, use only compiler standard defines. Either exceptions are enabled or they aren't.
* bug #363 - add test for integer overflow in size computationsGravatar Benoit Jacob2011-10-16
|
* bug #363 - check for integer overflow in size=rows*cols computationsGravatar Benoit Jacob2011-10-16
|
* Update docs of PlainObjectBase::Map(); fixes bug #335.Gravatar Jitse Niesen2011-09-03
| | | | Also fix some typos.
* protect calls to min and max with parentheses to make Eigen compatible with ↵Gravatar Gael Guennebaud2011-07-21
| | | | | | | default windows.h (transplanted from 49b6e9143e1d74441924c0c313536e263e12a55c )
* Improved docs of PlainObjectBase::conservativeResize methods.Gravatar Hauke Heibel2011-02-24
|
* Improve documentation of plugins.Gravatar Jitse Niesen2011-02-13
|
* add Map static methods taking Strides, add test checking for compilation errorsGravatar Benoit Jacob2011-02-03
|
* mark the packet access methods as internalGravatar Gael Guennebaud2011-02-01
|
* make eigen2 cholesky test passGravatar Benoit Jacob2011-01-28
|