mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Another big refactoring change:
* add a new Eigen2Support module including Cwise, Flagged, and some other deprecated stuff * add a few cwiseXxx functions * adapt a few modules to use cwiseXxx instead of the .cwise() prefix
This commit is contained in:
@@ -52,7 +52,7 @@ template<typename MatrixType> void eigensolver(const MatrixType& m)
|
||||
// Regression test for issue #66
|
||||
MatrixType z = MatrixType::Zero(rows,cols);
|
||||
ComplexEigenSolver<MatrixType> eiz(z);
|
||||
VERIFY((eiz.eigenvalues().cwise()==0).all());
|
||||
VERIFY((eiz.eigenvalues().cwiseEqual(0)).all());
|
||||
}
|
||||
|
||||
void test_eigensolver_complex()
|
||||
|
||||
Reference in New Issue
Block a user