external.f90 Source File

This File Depends On

sourcefile~~external.f90~~EfferentGraph sourcefile~external.f90 external.f90 sourcefile~square.f90 square.f90 sourcefile~square.f90->sourcefile~external.f90
Help

Files Dependent On This One

sourcefile~~external.f90~~AfferentGraph sourcefile~external.f90 external.f90 sourcefile~main.f90 main.f90 sourcefile~external.f90->sourcefile~main.f90
Help

Source Code


Source Code

module external
  use iso_fortran_env, only: wp=>real64
  use square
  implicit none

contains

  subroutine squareWrapperExternal(x, y)
    real(wp), intent(in),   dimension(:)  :: x
    real(wp), intent(out),  dimension(:)  :: y

    y = squareFun(x)

    return
  end subroutine squareWrapperExternal

end module external