-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
format the fortran code with fprettify.
- Loading branch information
1 parent
7ee9c6c
commit eec6db8
Showing
33 changed files
with
103,427 additions
and
115,337 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,13 @@ | ||
MODULE FLUXES_V | ||
USE LIBRARY | ||
USE TRANSFORM | ||
USE LOCAL | ||
USE FLUXES | ||
USE DERIVATIVES | ||
USE INITIALISATION | ||
USE RECON | ||
IMPLICIT NONE | ||
|
||
|
||
|
||
|
||
|
||
CONTAINS | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
USE LIBRARY | ||
USE TRANSFORM | ||
USE LOCAL | ||
USE FLUXES | ||
USE DERIVATIVES | ||
USE INITIALISATION | ||
USE RECON | ||
IMPLICIT NONE | ||
|
||
CONTAINS | ||
|
||
END MODULE FLUXES_V |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
for f in *.f90; do | ||
fprettify -i 4 --silent $f | ||
done |
Oops, something went wrong.