3 subroutine sgtsl(n, c, d, e, b, info)
9 integer(itm_i4),
intent(in) :: n
10 real(r8),
dimension(n + 2),
intent(inout) :: c, d, e, b
11 integer(itm_i4),
intent(out) :: info
58 integer(itm_i4) :: k, kb, kp1, nm1, nm2
73 if (abs(c(kp1)) >= abs(c(k)))
then
89 if (c(k) == 0.0_r8)
then
95 c(kp1) = d(kp1) + t * d(k)
96 d(kp1) = e(kp1) + t * e(k)
98 b(kp1) = b(kp1) + t * b(k)
103 if (c(n) == 0._r8)
then
113 b(nm1) = (b(nm1) - d(nm1) * b(n)) / c(nm1)
117 b(k) = (b(k) - d(k) * b(k + 1) - e(k) * b(k + 2)) / c(k)
subroutine sgtsl(n, c, d, e, b, info)