mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-31 19:00:35 +08:00
add nomalloc unit test for rank2 updates
This commit is contained in:
parent
9801c959e6
commit
6da5d87f92
@ -78,7 +78,8 @@ template<typename MatrixType> void nomalloc(const MatrixType& m)
|
||||
VERIFY_IS_APPROX(m2,m2);
|
||||
|
||||
m2.template selfadjointView<Lower>().rankUpdate(m1.col(0),-1);
|
||||
m2.template selfadjointView<Lower>().rankUpdate(m1.row(0),-1);
|
||||
m2.template selfadjointView<Upper>().rankUpdate(m1.row(0),-1);
|
||||
m2.template selfadjointView<Lower>().rankUpdate(m1.col(0), m1.col(0)); // rank-2
|
||||
|
||||
// The following fancy matrix-matrix products are not safe yet regarding static allocation
|
||||
m2.template selfadjointView<Lower>().rankUpdate(m1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user