init_fortran_modules Subroutine

public subroutine init_fortran_modules()

Temporary routine to call initialisation routines for Fortran modules that are not wrapped by f2py and thus cannot be called from Python.

Arguments

None

Contents

Source Code


Source Code

   subroutine init_fortran_modules
      !! Temporary routine to call initialisation routines for Fortran modules
      !! that are not wrapped by f2py and thus cannot be called from Python.

      use fson_library, only: init_fson_library

      implicit none

      call init_fson_library

   end subroutine init_fortran_modules