meagre outcome for so much time spent!

* fix inverse() bug discovered by Gael's test
* fix warnings introduced by the new Diagonal stuff
* update Doxyfile to v1.5.6
This commit is contained in:
Benoit Jacob
2008-06-01 03:36:49 +00:00
parent d5cbb1d002
commit dc5fd8dfff
5 changed files with 1239 additions and 53 deletions

View File

@@ -147,7 +147,7 @@ template<typename Lhs, typename Rhs> struct ei_product_eval_mode
enum{ value = Lhs::MaxRowsAtCompileTime >= EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
&& Rhs::MaxColsAtCompileTime >= EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
&& Lhs::MaxColsAtCompileTime >= EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
&& Rhs::Flags&Diagonal!=Diagonal
&& (Rhs::Flags&Diagonal)!=Diagonal
? CacheFriendlyProduct : NormalProduct };
};