aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* add test for normalize() and normalized()Gravatar Benoit Jacob2011-06-15
|
* bug #298 - let normalize() return a reference to *thisGravatar Andy Somerville2011-06-15
|
* remove the use of non standard long longGravatar Gael Guennebaud2011-06-14
|
* fix aligned_allocator::allocate interfaceGravatar Gael Guennebaud2011-06-14
|
* fix typo in constant nameGravatar Thomas Capricelli2011-06-12
|
* introduce a smart_copy internal function and fix sparse matrices with non ↵Gravatar Gael Guennebaud2011-06-09
| | | | POD scalar type
* Implement matrix logarithm + test + docs.Gravatar Jitse Niesen2011-06-07
| | | | Currently, test matrix_function_1 fails due to bug #288.
* Decouple MatrixFunction and MatrixFunctionAtomicGravatar Jitse Niesen2011-06-07
| | | | in preparation for implementation of matrix log.
* Fix and test MatrixSquareRoot for 1-by-1 matrices.Gravatar Jitse Niesen2011-06-07
|
* Sparse: more fixes regarding long int as index typeGravatar Gael Guennebaud2011-06-07
|
* Sparse: fix long int as index type in simplicial cholesky and other ↵Gravatar Gael Guennebaud2011-06-06
| | | | decompositions
* Fix snippets for operator|| and && by adding pair of parens.Gravatar Jitse Niesen2011-06-03
|
* fix compilation with MinGWGravatar Gael Guennebaud2011-06-01
|
* forgot to include this file in previous commitGravatar Gael Guennebaud2011-06-01
|
* add boolean || and && operatorsGravatar Gael Guennebaud2011-05-31
|
* update URLGravatar Gael Guennebaud2011-05-31
|
* add read/write routines for sparse matrices in the Market formatGravatar Gael Guennebaud2011-05-31
|
* Fix truncated instructions for printers.pyGravatar Jitse Niesen2011-05-30
| | | | ... as noted by kp0987 on forum
* fix bug #278: geometry tutorialGravatar Gael Guennebaud2011-05-28
| | | | | (transplanted from 3cd1641dac7b9cc0f969d3ad656c15f037f2d1d1 )
* do not directly call std::ceilGravatar Gael Guennebaud2011-05-28
|
* finish to fix bug #270: we have to use EIGEN_ALIGN_STATICALLY and not ↵Gravatar Gael Guennebaud2011-05-28
| | | | EIGEN_DONT_ALIGN_STATICALLY...
* Fix typo ('using namespace' instead of 'using').Gravatar Jitse Niesen2011-05-26
|
* Simplify the use of custom scalar types, the rule is to never directly call ↵Gravatar Gael Guennebaud2011-05-25
| | | | | | | a standard math function using std:: but rather put a using std::foo before and simply call foo: using std::max; max(a,b);
* bug #225: add a unit test for memory leakGravatar Gael Guennebaud2011-05-23
|
* bug #271: fix copy/paste mistakes in docGravatar Gael Guennebaud2011-05-23
| | | | (transplanted from 145b9cad63101ee46924d446fa8b08ffb48c7f3a)
* clean a bit previous patch (ctor vs static_cast and a few bits)Gravatar Gael Guennebaud2011-05-23
|
* fix implicit scalar conversions (needed to support fancy scalar types, see ↵Gravatar David H. Bailey2011-05-23
| | | | bug #276)
* fix gemv_static_vector_if on architectures that cannot aligned on the stack ↵Gravatar Gael Guennebaud2011-05-21
| | | | (e.g., ARM NEON)
* clean several other assertion checking testsGravatar Gael Guennebaud2011-05-20
|
* fix vectorization_logic when EIGEN_GCC_AND_ARCH_DOESNT_WANT_STACK_ALIGNMENTGravatar Gael Guennebaud2011-05-19
|
* NEON: fix plsetGravatar Gael Guennebaud2011-05-18
|
* add unit test for plsetGravatar Gael Guennebaud2011-05-18
|
* NEON: disable unaligned assertion checking for non vectorized typesGravatar Gael Guennebaud2011-05-18
|
* NEON: fix ploaddupGravatar Gael Guennebaud2011-05-18
|
* fix bug #267: alloca is not aligned on armGravatar Gael Guennebaud2011-05-17
|
* Autodiff: fix scalr - active_scalarGravatar Gael Guennebaud2011-05-14
|
* Store light-weight objects in evaluators by value.Gravatar Jitse Niesen2011-05-13
| | | | This resolves failure in unit test caused by dying temporaries.
* AutoDiff: add one missing operator- versionGravatar Gael Guennebaud2011-05-12
|
* AutoDiff: fix most of bug #234 (missing operators, used old internal math ↵Gravatar Gael Guennebaud2011-05-12
| | | | function interface, etc)
* AutoDiff: fix unary operator-Gravatar Gael Guennebaud2011-05-12
|
* Remove Eigen::internal::sqrt(), see bug #264.Gravatar Jitse Niesen2011-05-12
|
* fix bug #260: broken Qt support for TransformGravatar John Tytgat2011-05-11
| | | | | (transplanted from 84c8b6d5c58c8e09c53356287bdfc8bc730492a0 )
* Forgot to 'hg add' example file in last commit.Gravatar Jitse Niesen2011-05-10
|
* Implement and document MatrixBase::sqrt().Gravatar Jitse Niesen2011-05-09
|
* Fix compilation error under GCC 4.5.Gravatar Jitse Niesen2011-05-09
| | | | | That version is stricter in forcing function prototype and definition to match.
* Add test for sqrt() on complex Arrays.Gravatar Jitse Niesen2011-05-09
| | | | | From Gael's dashboard output of matrix_square_root test, I suspect the test committed here may fail on old gcc.
* Implement square root for real matrices via Schur.Gravatar Jitse Niesen2011-05-08
|
* Implement matrix square root for complex matrices.Gravatar Jitse Niesen2011-05-07
| | | | | I hope to implement the real case soon, but it's a bit more complicated due to the 2-by-2 blocks in the real Schur decomposition.
* Get rid of wrong "subscript above bounds" warning (bug #149).Gravatar Jitse Niesen2011-05-07
|
* s/n=n/EIGEN_UNUSED_VARIABLE(n)Gravatar Gael Guennebaud2011-05-06
|