aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-08-22 11:35:01 +0000
committertradke <tradke@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-08-22 11:35:01 +0000
commitacc6179acd82dfd9f7842a383ba1b30ec6fd6128 (patch)
tree98f91a6c9c449f972738d8953bba3022b7a0fbe3
parente8cd3041a02ce557ddd907c63d3aafc7371a34fc (diff)
Silently ignore a table option with key "input_array_time_levels" which is
meant for the global interpolation routine only. This closes PR CactusBase/1581: LocalInterp produces too many useless level 1 warnings. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@176 df1f8a13-aa1d-4dd4-9681-27ded5b42416
-rw-r--r--src/Operator.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Operator.c b/src/Operator.c
index 2fcd7c7..d0c4e2e 100644
--- a/src/Operator.c
+++ b/src/Operator.c
@@ -126,6 +126,11 @@ int LocalInterp_InterpLocalUniform (int num_dims,
"Option with key '%s' in interpolation parameter options "
"table is not not supported (will be ignored)", key);
}
+ else if (CCTK_Equals (key, "input_array_time_levels"))
+ {
+ /* silently ignore options which are meant for the global
+ interpolator only */
+ }
else
{
/* warn about other options */