aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Main.F90
blob: 3ad56c6107af506ced9df183637fdd72341b96e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "cctk.h"

module cctk_Main
  implicit none

  interface

     subroutine CCTK_Initialise (ierr, config)
       implicit none
       integer      ierr
       CCTK_POINTER config
     end subroutine CCTK_Initialise

     subroutine CCTK_Evolve (ierr, config)
       implicit none
       integer      ierr
       CCTK_POINTER config
     end subroutine CCTK_Evolve

     subroutine CCTK_Shutdown (ierr, config)
       implicit none
       integer      ierr
       CCTK_POINTER config
     end subroutine CCTK_Shutdown

     subroutine CCTK_MainLoopIndex (main_loop_index)
       implicit none
       integer main_loop_index
     end subroutine CCTK_MainLoopIndex

     subroutine CCTK_SetMainLoopIndex (ierr, main_loop_index)
       implicit none
       integer ierr
       integer main_loop_index
     end subroutine CCTK_SetMainLoopIndex

  end interface
  
end module cctk_Main