/[lmdze]/trunk/dyn3d/initial0.f90
ViewVC logotype

Contents of /trunk/dyn3d/initial0.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (show annotations)
Thu Jun 13 14:40:06 2019 UTC (4 years, 11 months ago) by guez
File size: 243 byte(s)
Change all `.f` suffixes to `.f90`. (The opposite was done in revision
82.)  Because of change of philosopy in GNUmakefile: we already had a
rewritten rule for `.f`, so it does not make the makefile longer to
replace it by a rule for `.f90`. And it spares us options of
makedepf90 and of the compiler. Also we prepare the way for a simpler
`CMakeLists.txt`.

1
2 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/initial0.F,v 1.1.1.1 2004/05/19
3 ! 12:53:07 lmdzadmin Exp $
4
5 SUBROUTINE initial0(n, x)
6 IMPLICIT NONE
7 INTEGER n, i
8 REAL x(n)
9
10 DO i = 1, n
11 x(i) = 0.
12 END DO
13 RETURN
14 END SUBROUTINE initial0

  ViewVC Help
Powered by ViewVC 1.1.21