add optimizations when compiling trimspNL

- this shortens the runtime a simulation significantly (by a factor of ~2).
- the output from trimspNL is identical to when no optimizations are used
This commit is contained in:
2021-09-29 12:51:54 -07:00
parent 5fa07b0e39
commit 1bb1972e9e
2 changed files with 1 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ OPS=-c $(DIALECT) $(WARN) $(DEBUG)
all : trimspNL
trimspNL : trimspNL.F
$(FC) -o $@ $<
$(FC) -O3 -o $@ $<
clean:
rm -f *.o *~ \#* .#* trimspNL