Ignore:
Timestamp:
Apr 8, 2014 3:21:23 PM (10 years ago)
Author:
heinze
Message:

REAL constants provided with KIND-attribute

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/check_for_restart.f90

    r1321 r1353  
    2020! Current revisions:
    2121! -----------------
    22 !
     22! REAL constants provided with KIND-attribute
    2323!
    2424! Former revisions:
     
    125125!
    126126!-- Set the stop flag also, if restart is forced by user
    127     IF ( time_restart /= 9999999.9  .AND.                                      &
     127    IF ( time_restart /= 9999999.9_wp  .AND.                                      &
    128128         time_restart < time_since_reference_point )  THEN
    129129
     
    136136!--       Increment restart time, if forced by user, otherwise set restart
    137137!--       time to default (no user restart)
    138           IF ( dt_restart /= 9999999.9 )  THEN
     138          IF ( dt_restart /= 9999999.9_wp )  THEN
    139139             time_restart = time_restart + dt_restart
    140140          ELSE
    141              time_restart = 9999999.9
     141             time_restart = 9999999.9_wp
    142142          ENDIF
    143143
     
    156156               .AND.  terminate_coupled_remote == 0 )  THEN
    157157
    158              IF ( dt_restart /= 9999999.9 )  THEN
     158             IF ( dt_restart /= 9999999.9_wp )  THEN
    159159                terminate_coupled = 4
    160160             ELSE
     
    174174          ENDIF
    175175       ELSE
    176           time_restart = 9999999.9
     176          time_restart = 9999999.9_wp
    177177       ENDIF
    178178    ENDIF
Note: See TracChangeset for help on using the changeset viewer.