* refactoring of the matrix product into multiple small kernels

* started an efficient selfadjoint matrix * general matrix product
  based on the generic kernels ( => need a very little LOC)
This commit is contained in:
Gael Guennebaud
2009-07-21 16:58:35 +02:00
parent afa8f2ca95
commit d6627d540e
4 changed files with 533 additions and 375 deletions

View File

@@ -180,6 +180,7 @@ namespace Eigen {
#include "src/Core/products/GeneralMatrixMatrix.h"
#include "src/Core/products/GeneralMatrixVector.h"
#include "src/Core/products/SelfadjointMatrixVector.h"
#include "src/Core/products/SelfadjointMatrixMatrix.h"
#include "src/Core/TriangularMatrix.h"
#include "src/Core/SelfAdjointView.h"
#include "src/Core/SolveTriangular.h"