From acc6179acd82dfd9f7842a383ba1b30ec6fd6128 Mon Sep 17 00:00:00 2001 From: tradke Date: Fri, 22 Aug 2003 11:35:01 +0000 Subject: 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 --- src/Operator.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') 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 */ -- cgit v1.2.3