aboutsummaryrefslogtreecommitdiff
path: root/transfer.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-04-09 09:44:46 +0200
committerAnton Khirnov <anton@khirnov.net>2019-04-09 09:45:32 +0200
commit1e83fd63c30d433ee53769d4e4768feabf822ae2 (patch)
treebc915af5b981f6bb282a9a6e857eb861de6dc42e /transfer.h
parent9c47c8202644e20e6ae054a6c7ddf09b6a0e4808 (diff)
mg2d: add higher-order interpolation operators
Diffstat (limited to 'transfer.h')
-rw-r--r--transfer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/transfer.h b/transfer.h
index 424ca64..b2133f4 100644
--- a/transfer.h
+++ b/transfer.h
@@ -27,8 +27,11 @@
enum GridTransferOperator {
GRID_TRANSFER_LAGRANGE_1,
GRID_TRANSFER_LAGRANGE_3,
+ GRID_TRANSFER_LAGRANGE_5,
+ GRID_TRANSFER_LAGRANGE_7,
GRID_TRANSFER_FW_1,
GRID_TRANSFER_FW_3,
+ GRID_TRANSFER_FW_5,
};
typedef struct RegularGrid2D {