Displaying 1 result from an estimated 1 matches for "dsged".
Did you mean:
dseed
2007 Apr 11
3
Fortran coding standards
...cs exist in R.
Fortran 77 had PARAMETERs, and PARAMETERs equal to
99999 and 200 should have been defined instead of
repeatedly using "magic numbers". More importantly,
the code will fail if NN exceeds 99999, but the code
does not check for this. I hope someone will fix this.
In the code dsged the variables half, one, two should
be made parameters, and instead of
IMPLICIT DOUBLE PRECISION (A-H, O-Z)
IMPLICIT NONE
should be used and all variables declared. Although
IMPLICIT NONE is not standard Fortran 77, it is
standard Fortran 90 and is supported by g77.
Experienced For...