/[lmdze]/trunk/phylmd/zilch.f90
ViewVC logotype

Contents of /trunk/phylmd/zilch.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 81 - (show annotations)
Wed Mar 5 14:38:41 2014 UTC (10 years, 2 months ago) by guez
File size: 305 byte(s)
 Converted to free source form files which were still in fixed source
form. The conversion was done using the polish mode of the NAG Fortran
Compiler.

In addition to converting to free source form, the processing of the
files also:

-- indented the code (including comments);

-- set Fortran keywords to uppercase, and set all other identifiers
to lower case;

-- added qualifiers to end statements (for example "end subroutine
conflx", instead of "end");

-- changed the terminating statements of all DO loops so that each
loop ends with an ENDDO statement (instead of a labeled continue).

1
2 ! $Header: /home/cvsroot/LMDZ4/libf/phylmd/zilch.F,v 1.1.1.1 2004/05/19
3 ! 12:53:09 lmdzadmin Exp $
4
5 SUBROUTINE zilch(x, m)
6
7 ! Zero the real array x dimensioned m.
8
9 IMPLICIT NONE
10
11 INTEGER, INTENT (IN) :: m
12 INTEGER i
13 REAL x(m)
14
15 DO i = 1, m
16 x(i) = 0.0
17 END DO
18 RETURN
19 END SUBROUTINE zilch

  ViewVC Help
Powered by ViewVC 1.1.21