103 DOUBLE PRECISION D( * ), E( * )
110 DOUBLE PRECISION ZERO, RELCOND
111 parameter( zero = 0.0d0,
112 $ relcond = 0.999d0 )
117 DOUBLE PRECISION EPS, SAFMIN, SMLNUM, RMIN, TMP, TMP2,
122 DOUBLE PRECISION DLAMCH
140 safmin = dlamch(
'Safe minimum' )
141 eps = dlamch(
'Precision' )
142 smlnum = safmin / eps
143 rmin = sqrt( smlnum )
164 tmp = sqrt(abs(d(1)))
165 IF (tmp.LT.rmin) yesrel = .false.
166 IF(.NOT.yesrel)
GOTO 11
168 tmp2 = sqrt(abs(d(i)))
169 IF (tmp2.LT.rmin) yesrel = .false.
170 IF(.NOT.yesrel)
GOTO 11
171 offdig2 = abs(e(i-1))/(tmp*tmp2)
172 IF(offdig+offdig2.GE.relcond) yesrel = .false.
173 IF(.NOT.yesrel)
GOTO 11
subroutine dlarrr(n, d, e, info)
DLARRR performs tests to decide whether the symmetric tridiagonal matrix T warrants expensive computa...