mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Give the axe to the aliasing system.
Improve the evaluation system instead.
This commit is contained in:
@@ -44,10 +44,9 @@ template<typename MatrixType1,
|
||||
a = b;
|
||||
a = b + c;
|
||||
a = s * (b - c);
|
||||
a.alias() = a + b;
|
||||
a = eval(a + b);
|
||||
|
||||
a += b;
|
||||
a.alias() += b;
|
||||
a -= b + b;
|
||||
|
||||
MatrixType1 d(rows1, cols1);
|
||||
|
||||
Reference in New Issue
Block a user