aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/operator_prototypes.hh
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2007-02-19 20:23:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2007-02-19 20:23:00 +0000
commit0b07e99df3d194924a2e5904f5e13bd0c1dac0b8 (patch)
treeb3796bf30ba4c55550110543b77b97ba816ce2af /Carpet/CarpetLib/src/operator_prototypes.hh
parent382cbd2db33a5980b63a69393594df8b49b0a238 (diff)
CarpetLib: Add ENO timer interpolator
darcs-hash:20070219202316-dae7b-441bdad39e75963a86bedbcaea54bbf7ced0f8a7.gz
Diffstat (limited to 'Carpet/CarpetLib/src/operator_prototypes.hh')
-rw-r--r--Carpet/CarpetLib/src/operator_prototypes.hh16
1 files changed, 16 insertions, 0 deletions
diff --git a/Carpet/CarpetLib/src/operator_prototypes.hh b/Carpet/CarpetLib/src/operator_prototypes.hh
index c2a6e8fbc..40749af1e 100644
--- a/Carpet/CarpetLib/src/operator_prototypes.hh
+++ b/Carpet/CarpetLib/src/operator_prototypes.hh
@@ -128,6 +128,22 @@ namespace CarpetLib {
ibbox3 const & restrict dstbbox,
ibbox3 const & restrict regbbox);
+ template <typename T>
+ void
+ interpolate_eno_3d_3tl (T const * restrict const src1,
+ CCTK_REAL const t1,
+ T const * restrict const src2,
+ CCTK_REAL const t2,
+ T const * restrict const src3,
+ CCTK_REAL const t3,
+ ivect3 const & restrict srcext,
+ T * restrict const dst,
+ CCTK_REAL const t,
+ ivect3 const & restrict dstext,
+ ibbox3 const & restrict srcbbox,
+ ibbox3 const & restrict dstbbox,
+ ibbox3 const & restrict regbbox);
+
template <typename T>