commit | 04502cccd9258d1b1714914f4136a91c2cbf5c0c | [log] [tgz] |
---|---|---|
author | Benoit Jacob <jacob.benoit.1@gmail.com> | Wed Dec 05 07:22:22 2007 +0000 |
committer | Benoit Jacob <jacob.benoit.1@gmail.com> | Wed Dec 05 07:22:22 2007 +0000 |
tree | 85c48405c0f4875888be94b518d956cf8feb9e87 | |
parent | 346c00f4c88ecfd35d94dbc19eed300021a0580d [diff] [blame] |
rename Block to DynBlock and rework API to make place for upcoming fixed-size Block matrix. Also some cleanup.
diff --git a/test/adjoint.cpp b/test/adjoint.cpp index a862254..4b4b42f 100644 --- a/test/adjoint.cpp +++ b/test/adjoint.cpp
@@ -93,10 +93,10 @@ { 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)); } }