Line data Source code
1 : module mo_lu_factor 2 : private 3 : public :: lu_fac 4 : contains 5 0 : subroutine lu_fac( lu ) 6 : use shr_kind_mod, only : r8 => shr_kind_r8 7 : implicit none 8 : !----------------------------------------------------------------------- 9 : ! ... dummy args 10 : !----------------------------------------------------------------------- 11 : real(r8), intent(inout) :: lu(:) 12 0 : end subroutine lu_fac 13 : end module mo_lu_factor