Commit 63a8a3f7 authored by Henry Gerard's avatar Henry Gerard
Browse files

ajout types

parent 29b05a97
No related merge requests found
Showing with 15 additions and 0 deletions
+15 -0
Types_mod.f90 0 → 100644
module Types_mod
use, intrinsic :: iso_fortran_env
implicit none
! everything is private unless otherwise stated
private
public :: SP, DP
integer, parameter :: SP = REAL32
integer, parameter :: DP = REAL64
integer, parameter :: SI = INT32
integer, parameter :: DI = INT64
! put other kind parameters here from Listing 1
contains
end module Types_mod
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment