Ignore:
Timestamp:
Sep 28, 2012 6:46:45 AM (12 years ago)
Author:
raasch
Message:

subroutine prognostic_equations_noopt has been removed

File:
1 edited

Legend:

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

    r1017 r1019  
    44! Current revisions:
    55! -----------------
    6 !
     6! non-optimized version of prognostic_equations removed
    77!
    88! Former revisions:
     
    177177!--       in the other versions a good vectorization is prohibited due to
    178178!--       inlining problems.
    179           IF ( loop_optimization == 'vector' )  THEN
     179          IF ( loop_optimization == 'cache' )  THEN
     180             CALL prognostic_equations_cache
     181          ELSEIF ( loop_optimization == 'vector' )  THEN
    180182             CALL prognostic_equations_vector
    181183          ELSEIF ( loop_optimization == 'acc' )  THEN
    182184             CALL prognostic_equations_acc
    183           ELSE
    184              IF ( scalar_advec == 'bc-scheme' )  THEN
    185                 CALL prognostic_equations_noopt
    186              ELSE
    187                 CALL prognostic_equations_cache
    188              ENDIF
    189185          ENDIF
    190186
Note: See TracChangeset for help on using the changeset viewer.