Added fortran code

This commit is contained in:
2021-06-08 15:30:15 +02:00
parent 02e960dd84
commit 8f748e4362
2 changed files with 4739 additions and 0 deletions

28
fortran/Makefile Normal file
View File

@@ -0,0 +1,28 @@
# Makefile MAKEFILE_unix_trimsp.
#
# 17-Jun-2002 TP, use standard f77 code; use
# ranlux random number generator of the CERN mathlib
#
# 4-Feb-2013 ZS, clean up makefile and include random number
# generator in the code. Use gfortran which is now
# a standard part of gcc in moder systems.
#
FC=gfortran
#DEBUG = -g -O -fbacktrace -ffpe-trap='underflow'
DEBUG =
#WARN= -Wall -W
WARN=
DIALECT =
prefix = /usr/local
OPS=-c $(DIALECT) $(WARN) $(DEBUG)
all : trimspNL
trimspNL : trimspNL.F
$(FC) -o $@ $<
clean:
rm -f *.o *~ \#* .#* trimspNL
install:
mv trimspNL $(prefix)/bin/.

4711
fortran/trimspNL.F Normal file

File diff suppressed because it is too large Load Diff