Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | add a generic version of std::vector::resize for other stl | Gael Guennebaud | 2009-04-21 |
| | | | | implementations | ||
* | std::vector now explicitely requires the use of Eigen::aligned_allocator | Gael Guennebaud | 2009-04-21 |
| | | | | CREDIT Hauke Heibel | ||
* | add missing vector ctor reported by Markus Moll on the ML | Gael Guennebaud | 2009-04-21 |
| | |||
* | this should fix the linking issue with StdVector without any user | Gael Guennebaud | 2009-04-21 |
| | | | | changes... I cross my fingers... | ||
* | fix ctor issues with ei_workaround_msvc_std_vector | Gael Guennebaud | 2009-04-21 |
| | |||
* | fix the 4x4 inverse -- unit test passes again | Benoit Jacob | 2009-04-14 |
| | |||
* | patch from Moritz Lenz to allow solving transposed problem with superlu | Gael Guennebaud | 2009-04-10 |
| | |||
* | fix memory leak in superlu backend | Gael Guennebaud | 2009-04-10 |
| | |||
* | bugfix when the diagonal is not stored and assumed to be 1 | Gael Guennebaud | 2009-04-10 |
| | |||
* | add aligned_allocator operator == and != as suggested by Hauke Heibel | Gael Guennebaud | 2009-04-09 |
| | |||
* | more patches from Hauke Heibel: compilation/warning fixes from VC++ | Benoit Jacob | 2009-04-09 |
| | |||
* | forward-port r951449: patch by Hauke Heibel: compile fix with VS 9 | Benoit Jacob | 2009-04-09 |
| | |||
* | relicence Julien Pommier's SSE code to Eigen's licenses | Gael Guennebaud | 2009-04-09 |
| | |||
* | stupid typo | Gael Guennebaud | 2009-04-06 |
| | |||
* | * fix the binary bloat issue, Rohit's idea was the good one | Benoit Jacob | 2009-04-06 |
| | | | | * a few dox fixes (alloc routines do return 0 on error) and forgot to update version number in CMakeLists | ||
* | fix computation of aligned_bit (has been broken by the change of | Gael Guennebaud | 2009-04-05 |
| | | | | AutoAlign/DontAlign) | ||
* | sparse module: new API proposal for triangular solves and experimental | Gael Guennebaud | 2009-04-05 |
| | | | | solver support with a sparse matrix as the rhs. | ||
* | * fixed truncation warnings caused by MatrixBase::CoeffReturnType under MSVC | Kenneth Frank Riddile | 2009-04-03 |
| | |||
* | add an assertion in sparse LLT for invalid input matrix | Gael Guennebaud | 2009-04-03 |
| | |||
* | oops, bad copy paste in ei_psqrt, thanks to Jitse Niesen | Gael Guennebaud | 2009-04-02 |
| | |||
* | CwiseUnaryOp -> SparseCwiseUnaryOp | Benoit Jacob | 2009-04-01 |
| | |||
* | * Find SuperLU also when it is installed without a superlu/ prefix | Benoit Jacob | 2009-04-01 |
| | | | | * Some more CoeffReturnType changes | ||
* | now if Derived has the DirectAccess flag, then MatrixBase<Derived>::coeff() ↵ | Benoit Jacob | 2009-04-01 |
| | | | | | | const returns a const Scalar& and not a Scalar as before. useful for people doing direct access. + 1 bugfix thanks to Patrick Mihelich, forgot a & in MapBase::coeff(int). | ||
* | More Cholesky fixes. | Benoit Jacob | 2009-04-01 |
| | | | | | | | | | * Cholesky decs are NOT rank revealing so remove all the rank/isPositiveDefinite etc stuff. * fix bug in LLT: s/return/continue/ * introduce machine_epsilon constants, they are actually needed for Higman's formula determining the cutoff in Cholesky. Btw fix the page reference to his book (chat with Keir). * solve methods always return true, since this isn't a rank revealing dec. Actually... they already did always return true!! Now it's explicit. * updated dox and unit-test | ||
* | fix mistake in static assertion, patch by Markus Moll. | Benoit Jacob | 2009-03-31 |
| | |||
* | add adjointInPlace() and add documentation warnings on adjoint() and ↵ | Benoit Jacob | 2009-03-31 |
| | | | | transpose() about aliasing effects. | ||
* | Many improvements in LLT and LDLT: | Benoit Jacob | 2009-03-30 |
| | | | | | | | | | * in LDLT, support the negative semidefinite case * fix bad floating-point comparisons, improves greatly the accuracy of methods like isPositiveDefinite() and rank() * simplifications * identify (but not resolve) bug: claim that only triangular part is used, is inaccurate * expanded unit-tests | ||
* | fix superLU backend: missing operator= | Gael Guennebaud | 2009-03-27 |
| | |||
* | make special ei_p functions static to avoid linking issues (they are too | Gael Guennebaud | 2009-03-27 |
| | | | | complex to be inlined) | ||
* | add vectorization of sqrt for float | Gael Guennebaud | 2009-03-27 |
| | |||
* | fix Taucs support (it appears Taucs does not return sorted matrices) | Gael Guennebaud | 2009-03-26 |
| | |||
* | The ABI break: | Benoit Jacob | 2009-03-26 |
| | | | | | | | * set AutoAlign=0, DontAlign!=0 * set Dynamic=33331 * add check on fixed sizes * bump version to 2.0.52 | ||
* | * enable vectorization of sin, cos, etc. by default with an option to | Gael Guennebaud | 2009-03-26 |
| | | | | | | | disable them (-DEIGEN_FAST_MATH=0) * add a specialization of MatrixBase::operator*(RealScalar) for fast "matrix of complex" times scalar products (even more useful for autodiff scalar types) | ||
* | oops forgot to include a file in previous commit (I had other local | Gael Guennebaud | 2009-03-26 |
| | | | | changes I did not want to commit yet...) | ||
* | for some reason passing the argument by const reference killed the perf | Gael Guennebaud | 2009-03-25 |
| | | | | | (in the packet version of sin, cos, exp, lop), so let's pass them by value. Also, improve the perf of ei_plog by reducing dependencies. | ||
* | add SSE2 versions of sin, cos, log, exp using code from Julien | Gael Guennebaud | 2009-03-25 |
| | | | | | | | | Pommier. They are for float only, and they return exactly the same result as the standard versions in about 90% of the cases. Otherwise the max error is below 1e-7. However, for very large values (>1e3) the accuracy of sin and cos slighlty decrease. They are about 3 or 4 times faster than 4 calls to their respective standard versions. So, is it ok to enable them by default in their respective functors ? | ||
* | * allows fixed size matrix with size==0 (via a specialization of | Gael Guennebaud | 2009-03-23 |
| | | | | | | MatrixStorage returning a null pointer). For instance this is very useful to make Tridiagonalization compile for 1x1 matrices * fix LLT and eigensolver for 1x1 matrix | ||
* | ei_pnegate implemented for AltiVec | Konstantinos A. Margaritis | 2009-03-20 |
| | |||
* | add vectorization of unary operator-() (the AltiVec version is probably | Gael Guennebaud | 2009-03-20 |
| | | | | broken) | ||
* | angle-axis doc: make it more clear the axis must be normalized | Gael Guennebaud | 2009-03-18 |
| | |||
* | more MSVC fixes: restrict keywords (sorry for all these commits) | Gael Guennebaud | 2009-03-17 |
| | |||
* | more MSVC fixes (asm comments...) | Gael Guennebaud | 2009-03-17 |
| | |||
* | fix compilation MSVC | Gael Guennebaud | 2009-03-17 |
| | |||
* | add affine * homogeneous vector for backward compatibility (e.g., | Gael Guennebaud | 2009-03-11 |
| | | | | kgllib) | ||
* | minor changes in AlignedBox needed for BVH module | Gael Guennebaud | 2009-03-11 |
| | |||
* | add optimized cross3 function (code from Rohit Garg) | Gael Guennebaud | 2009-03-11 |
| | |||
* | fix a few compilation errors and warnings (ICC) | Gael Guennebaud | 2009-03-11 |
| | |||
* | fix compilation with old, and future gcc | Gael Guennebaud | 2009-03-10 |
| | |||
* | compilation fix in MapBase | Gael Guennebaud | 2009-03-10 |
| | |||
* | add "slice vectorization" of redux (eg. m.block().minCoeff() is now | Gael Guennebaud | 2009-03-09 |
| | | | | vectorized) |