mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-13 20:26:03 +08:00
Disable schur non-convergence test.
(cherry picked from commit 01b5bc48ccf9ff24ace0f2074403ef9514c2f442)
This commit is contained in:
parent
fab848d4f7
commit
3a4a4e9fde
@ -54,7 +54,8 @@ template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTim
|
||||
VERIFY_IS_EQUAL(cs3.matrixT(), cs1.matrixT());
|
||||
VERIFY_IS_EQUAL(cs3.matrixU(), cs1.matrixU());
|
||||
cs3.setMaxIterations(1).compute(A);
|
||||
VERIFY_IS_EQUAL(cs3.info(), size > 1 ? NoConvergence : Success);
|
||||
// The schur decomposition does often converge with a single iteration.
|
||||
// VERIFY_IS_EQUAL(cs3.info(), size > 1 ? NoConvergence : Success);
|
||||
VERIFY_IS_EQUAL(cs3.getMaxIterations(), 1);
|
||||
|
||||
MatrixType Atriangular = A;
|
||||
|
Loading…
x
Reference in New Issue
Block a user