132 SUBROUTINE dlarra( N, D, E, E2, SPLTOL, TNRM,
133 $ NSPLIT, ISPLIT, INFO )
140 INTEGER INFO, N, NSPLIT
141 DOUBLE PRECISION SPLTOL, TNRM
145 DOUBLE PRECISION D( * ), E( * ), E2( * )
151 DOUBLE PRECISION ZERO
152 parameter( zero = 0.0d0 )
156 DOUBLE PRECISION EABS, TMP1
174 IF(spltol.LT.zero)
THEN
176 tmp1 = abs(spltol)* tnrm
179 IF( eabs .LE. tmp1)
THEN
190 IF( eabs .LE. spltol * sqrt(abs(d(i)))*sqrt(abs(d(i+1))) )
subroutine dlarra(n, d, e, e2, spltol, tnrm, nsplit, isplit, info)
DLARRA computes the splitting points with the specified threshold.