From 807cc1e022dc1a052e8e4971a6a4f781a7c94c86 Mon Sep 17 00:00:00 2001 From: danielbelkin Date: Thu, 30 Jul 2020 07:05:33 -0700 Subject: Add input parameter to control Galerkin-scheme gather (#1191) * Rename l_lower_order_in_v to galerkin_interpolation * Changed galerkin_interpolation from int to bool * ... and same for member versions. * Add input parameter to control galerkin_interpolation * Update documentation * semicolon * Update Docs/source/running_cpp/parameters.rst Co-authored-by: Axel Huebl * Update Docs/source/running_cpp/parameters.rst Resolve ambiguity Co-authored-by: Axel Huebl * Fix doc * Add references to documentation Co-authored-by: Axel Huebl --- Source/Python/WarpXWrappers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Python/WarpXWrappers.cpp') diff --git a/Source/Python/WarpXWrappers.cpp b/Source/Python/WarpXWrappers.cpp index 7b12c2781..db1f03e4a 100644 --- a/Source/Python/WarpXWrappers.cpp +++ b/Source/Python/WarpXWrappers.cpp @@ -98,9 +98,9 @@ extern "C" return WarpX::use_fdtd_nci_corr; } - int warpx_l_lower_order_in_v() + int warpx_galerkin_interpolation() { - return WarpX::l_lower_order_in_v; + return WarpX::galerkin_interpolation; } int warpx_nComps() -- cgit v1.2.3