aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/adjoint.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-01-16 16:27:00 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-01-16 16:27:00 +0100
commitc8e40edac9912a76904f5d302ea805bf53957123 (patch)
treeaf22c6724fcb746a797000b2d6b216886c428833 /test/adjoint.cpp
parentaeffdf909eb79dace9f12d0c38583f0dad106f54 (diff)
Remove Eigen2ToEigen3 migration page (obsolete since 3.3)
Diffstat (limited to 'test/adjoint.cpp')
-rw-r--r--test/adjoint.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/adjoint.cpp b/test/adjoint.cpp
index 7c8081ec4..e2bfa6d7d 100644
--- a/test/adjoint.cpp
+++ b/test/adjoint.cpp
@@ -177,6 +177,10 @@ void adjoint_extra()
c.col(j).head(j) = c.row(j).head(j);
}
+ for (int j = 0; j < 10; ++j) {
+ c.col(j) = c.row(j);
+ }
+
a.conservativeResize(1,1);
a = a.transpose();