rename Block to DynBlock and rework API to make place for

upcoming fixed-size Block matrix. Also some cleanup.
This commit is contained in:
Benoit Jacob
2007-12-05 07:22:22 +00:00
parent 346c00f4c8
commit 04502cccd9
8 changed files with 48 additions and 43 deletions

View File

@@ -93,10 +93,10 @@ void EigenTest::testAdjoint()
{
REPEAT {
adjoint(Matrix<float, 1, 1>());
adjoint(Matrix4cd());
adjoint(Matrix4d());
adjoint(MatrixXcf(3, 3));
adjoint(MatrixXi(8, 12));
adjoint(MatrixXd(20, 20));
adjoint(MatrixXcd(20, 20));
}
}