Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AlanRominger

  1. AlanRominger

    Can Fortran 95 reuse interfaces?

    True, the solution offered by FJacq seems to be robust. I recently encountered something that confused me even more. I discovered that the following does in fact work with g95. module routine_interfaces implicit none interface subroutine array_function(array) real, dimension(:)...
  2. AlanRominger

    Can Fortran 95 reuse interfaces?

    I found a sweet syntax that was really helpful to simplify a lot of code. Problem is, I discovered this is a Fortran 2003 feature. It works like this: interface subroutine name_in_interface(a) real, dimension(:), intent(in) :: a end subroutine name_in_interface end interface...

Part and Inventory Search

Back
Top