aboutsummaryrefslogtreecommitdiff
path: root/src/integral.f90
diff options
context:
space:
mode:
Diffstat (limited to 'src/integral.f90')
-rw-r--r--src/integral.f9022
1 files changed, 0 insertions, 22 deletions
diff --git a/src/integral.f90 b/src/integral.f90
deleted file mode 100644
index 859d880..0000000
--- a/src/integral.f90
+++ /dev/null
@@ -1,22 +0,0 @@
-module integral
- use common, only : dp
- implicit none
-
- public
-
- interface
- real(dp) pure function ivp_func(t, y)
- import :: dp
- real(dp), intent(in) :: t, y
- end function ivp_func
- ! module procedure :: rk4
- end interface
-contains
- real(dp) function rk4 (x) result(y)
- real(dp), intent(in) :: x
- y = x
- end function rk4
-
- ! pure function rk4()
- ! end function rk4
-end module integral