* take advantage of new possibilies in LLT (mat -= product)

* fix Block::operator+= product which was not optimized
* fix some compilation issues
This commit is contained in:
Gael Guennebaud
2009-07-07 15:32:21 +02:00
parent 92a35c93b2
commit 79877a9917
5 changed files with 23 additions and 23 deletions

View File

@@ -172,8 +172,9 @@ template<typename Derived> class MapBase
}
using Base::operator=;
using Base::operator*=;
using Base::operator+=;
using Base::operator-=;
template<typename OtherDerived>
Derived& operator+=(const MatrixBase<OtherDerived>& other)