aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/adjoint.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-05 07:22:22 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-05 07:22:22 +0000
commit04502cccd9258d1b1714914f4136a91c2cbf5c0c (patch)
tree85c48405c0f4875888be94b518d956cf8feb9e87 /test/adjoint.cpp
parent346c00f4c88ecfd35d94dbc19eed300021a0580d (diff)
rename Block to DynBlock and rework API to make place for
upcoming fixed-size Block matrix. Also some cleanup.
Diffstat (limited to 'test/adjoint.cpp')
-rw-r--r--test/adjoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/adjoint.cpp b/test/adjoint.cpp
index a86225408..4b4b42f20 100644
--- a/test/adjoint.cpp
+++ b/test/adjoint.cpp
@@ -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));
}
}