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

Annotation of /trunk/dyn3d/minmax.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (hide annotations)
Thu Jun 13 14:40:06 2019 UTC (5 years ago) by guez
File size: 308 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 guez 3 SUBROUTINE minmax(imax, xi, zmin, zmax)
2    
3     ! From dyn3d/minmax.F, version 1.1.1.1 2004/05/19 12:53:07
4     ! P. Le Van
5    
6     INTEGER, intent(in):: imax
7     REAL, intent(in):: xi(imax)
8     REAL, intent(out):: zmin, zmax
9    
10     !------------------------------
11    
12     zmin = minval(xi)
13     zmax = maxval(xi)
14    
15     END SUBROUTINE minmax

  ViewVC Help
Powered by ViewVC 1.1.21