aboutsummaryrefslogtreecommitdiff
path: root/src/periodic.h
blob: 32a77e5589bd0e99546c8601cb91216f43777cba (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
/* $Header$ */

#ifndef PERIODIC_H
#define PERIODIC_H

#include "cctk.h"

int
BndPeriodicVI (cGH const * restrict const cctkGH,
               int const * restrict const stencil,
               int const vi);

int
BndPeriodicVN (cGH const * restrict const cctkGH,
               int const * restrict const stencil,
               char const * restrict const vn);

int
BndPeriodicGI (cGH const * restrict const cctkGH,
               int const * restrict const stencil,
               int const gi);

int
BndPeriodicGN (cGH const * restrict const cctkGH,
               int const * restrict const stencil,
               char const * restrict const gn);



void
Periodic_RegisterBC (cGH * restrict const cctkGH);

void
Periodic_ApplyBC (cGH const * restrict const cctkGH);

#endif /* defined PERIODIC_H */