fix type mismatch caught by new static assert

This commit is contained in:
Benoit Jacob 2009-01-27 17:42:04 +00:00
parent d700343632
commit 9b06e072a5

View File

@ -1,4 +1,4 @@
Matrix3d m = Matrix3i::Zero(); Matrix3d m = Matrix3d::Zero();
m.part<Eigen::StrictlyUpperTriangular>().setOnes(); m.part<Eigen::StrictlyUpperTriangular>().setOnes();
cout << "Here is the matrix m:" << endl << m << endl; cout << "Here is the matrix m:" << endl << m << endl;
cout << "And let us now compute m*m.adjoint() in a very optimized way" << endl cout << "And let us now compute m*m.adjoint() in a very optimized way" << endl