mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Found a way to have eval() be a member function of class EiObject, instead of a global function.
CCMAIL:bensch128@yahoo.com
This commit is contained in:
@@ -39,7 +39,7 @@ template<typename MatrixType> void matrixManip(const MatrixType& m)
|
||||
a.row(i) += b.row(i);
|
||||
a.col(j) *= 2;
|
||||
a.minor(i, j) = b.block(1, rows-1, 1, cols-1);
|
||||
a.minor(i, j) -= eval(a.block(1, rows-1, 1, cols-1));
|
||||
a.minor(i, j) -= a.block(1, rows-1, 1, cols-1).eval();
|
||||
}
|
||||
|
||||
void EigenTest::testMatrixManip()
|
||||
|
||||
Reference in New Issue
Block a user