aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2019-04-22 21:43:26 +0200
committerWojtek Kosior <kwojtus@protonmail.com>2019-04-22 21:43:26 +0200
commit5a492e2abd1a946136fa5424c0519221cdb450f8 (patch)
tree425eb7966ae90d154f462453d23548dbf8ea5d52 /src
parentdf8ab71ba8355a0da378d1d7282ed5c9a93307cf (diff)
downloadfortran-assignment1-5a492e2abd1a946136fa5424c0519221cdb450f8.tar.gz
fortran-assignment1-5a492e2abd1a946136fa5424c0519221cdb450f8.zip
add dotmat module boilerplate
Diffstat (limited to 'src')
-rw-r--r--src/dotmath.F9015
1 files changed, 15 insertions, 0 deletions
diff --git a/src/dotmath.F90 b/src/dotmath.F90
new file mode 100644
index 0000000..e27929c
--- /dev/null
+++ b/src/dotmath.F90
@@ -0,0 +1,15 @@
+MODULE dotmat
+ IMPLICIT none
+ PRIVATE
+
+ PUBLIC :: dotmull
+ PRIVATE :: dotmull_4, dotmull_8, dotmull_16
+
+ INTERFACE dotmull
+ procedure dotmull_4, dotmull_8, dotmull_16
+ END INTERFACE dotmull
+
+CONTAINS
+
+
+END MODULE dotmat