mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-24 13:37:34 +08:00
Remove wrongly pushed debugging statements
This commit is contained in:
parent
815fa0dbf6
commit
3b0ad02c10
@ -486,11 +486,10 @@ ComputationInfo computeFromTridiagonal_impl(DiagType& diag, SubDiagType& subdiag
|
|||||||
|
|
||||||
while (end>0)
|
while (end>0)
|
||||||
{
|
{
|
||||||
EIGEN_ASM_COMMENT("beginabs");
|
|
||||||
for (Index i = start; i<end; ++i)
|
for (Index i = start; i<end; ++i)
|
||||||
if (internal::isMuchSmallerThan(abs(subdiag[i]),(abs(diag[i])+abs(diag[i+1]))) || abs(subdiag[i]) <= considerAsZero)
|
if (internal::isMuchSmallerThan(abs(subdiag[i]),(abs(diag[i])+abs(diag[i+1]))) || abs(subdiag[i]) <= considerAsZero)
|
||||||
subdiag[i] = 0;
|
subdiag[i] = 0;
|
||||||
EIGEN_ASM_COMMENT("endabs");
|
|
||||||
// find the largest unreduced block
|
// find the largest unreduced block
|
||||||
while (end>0 && subdiag[end-1]==0)
|
while (end>0 && subdiag[end-1]==0)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user