Changeset 419 for branches/GRISLIv3


Ignore:
Timestamp:
04/24/23 11:42:50 (15 months ago)
Author:
dumas
Message:

intent arguments insubroutine next-time

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GRISLIv3/SOURCES/next-time.f90

    r65 r419  
    1212subroutine next_time(time,dt,dtt,dtmax,dtmin,isynchro,itracebug,num_tracebug) 
    1313 
    14   integer :: itracebug 
    15   integer :: num_tracebug 
    16   integer :: isynchro 
    17   real :: dt 
    18   real :: dtt 
    19   real :: dtmax 
    20   real :: dtmin 
    21   real  (kind=kind(0.d0)) :: time 
     14  integer, intent(in) :: itracebug 
     15  integer, intent(in) :: num_tracebug 
     16  integer, intent(out) :: isynchro 
     17  real, intent(out) :: dt 
     18  real, intent(in) :: dtt 
     19  real, intent(in) :: dtmax 
     20  real, intent(in) :: dtmin 
     21  real (kind=kind(0.d0)), intent(inout) :: time 
     22 
     23  ! local variables 
    2224  real (kind=kind(0.d0)) :: time_loc 
    2325  real (kind=kind(0.d0)) :: time2_loc 
Note: See TracChangeset for help on using the changeset viewer.