OPS icon indicating copy to clipboard operation
OPS copied to clipboard

Suggestion to use Fortran 90 syntax or newer where available

Open monty241 opened this issue 4 years ago • 2 comments

Code contains constructs like in ops_cals_stats.f90: if (somcpri .gt. 0.0) then Starting with Fortran 90 when I am correct (correct me if wrong), this can be replaced by:

if (somcpri = 0.0) then which is easier to understand by coders recently graduating. Replacing some other traditional Fortran constructs by more modern constructs might also help adoption.

monty241 avatar Mar 05 '20 09:03 monty241