Tridiagonal Subroutine

public subroutine Tridiagonal(bounds, lbj, ubj, jtop, numf, filter, a, b, c, r, u)

Arguments

Type IntentOptional Attributes Name
type(bounds_type), intent(in) :: bounds
integer, intent(in) :: lbj
integer, intent(in) :: ubj
integer, intent(in) :: jtop(bounds%begc:)
integer, intent(in) :: numf
integer, intent(in) :: filter(:)
real(kind=r8), intent(in) :: a(bounds%begc:,lbj:)
real(kind=r8), intent(in) :: b(bounds%begc:,lbj:)
real(kind=r8), intent(in) :: c(bounds%begc:,lbj:)
real(kind=r8), intent(in) :: r(bounds%begc:,lbj:)
real(kind=r8), intent(inout) :: u(bounds%begc:,lbj:)