MPRealSupport was missing

This commit is contained in:
Gael Guennebaud
2010-07-15 20:45:45 +02:00
parent b08c26aefa
commit 6a370f50c7
2 changed files with 6 additions and 4 deletions

View File

@@ -10,8 +10,8 @@ using namespace std;
using namespace Eigen;
#ifndef SCALAR
#define SCALAR std::complex<double>
// #define SCALAR double
// #define SCALAR std::complex<double>
#define SCALAR float
#endif
typedef SCALAR Scalar;
@@ -87,7 +87,9 @@ void blas_gemm(const MatrixXd& a, const MatrixXd& b, MatrixXd& c)
template<typename M>
EIGEN_DONT_INLINE void gemm(const M& a, const M& b, M& c)
{
c.noalias() += a * b;
//c.noalias() += a * b;
for(int i=0;i<b.cols();++i)
c.col(i).noalias() += a * b.col(i);
}
int main(int argc, char ** argv)