Skip to content

Commit 8b5dd54

Browse files
author
james
committed
decreased EPS by a factor of 0.9 to correct problem with orthogonality of U in certain cases
1 parent b7b9415 commit 8b5dd54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SRC/dbdsdc.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ SUBROUTINE DBDSDC( UPLO, COMPQ, N, D, E, U, LDU, VT, LDVT, Q, IQ,
287287
CALL DLASCL( 'G', 0, 0, ORGNRM, ONE, N, 1, D, N, IERR )
288288
CALL DLASCL( 'G', 0, 0, ORGNRM, ONE, NM1, 1, E, NM1, IERR )
289289
*
290-
EPS = DLAMCH( 'Epsilon' )
290+
EPS = (0.9D+0)*DLAMCH( 'Epsilon' )
291291
*
292292
MLVL = INT( LOG( DBLE( N ) / DBLE( SMLSIZ+1 ) ) / LOG( TWO ) ) + 1
293293
SMLSZP = SMLSIZ + 1

0 commit comments

Comments
 (0)