From 56cca9ebf72189ea18d1ba43bc32b04592c16568 Mon Sep 17 00:00:00 2001 From: Isuru Fernando <isuruf@gmail.com> Date: Thu, 4 Oct 2018 22:10:01 -0500 Subject: [PATCH] Comment get_reduced_coeffs specializations --- sumpy/expansion/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sumpy/expansion/__init__.py b/sumpy/expansion/__init__.py index 54dbfd75..480f53fc 100644 --- a/sumpy/expansion/__init__.py +++ b/sumpy/expansion/__init__.py @@ -491,7 +491,7 @@ class LaplaceExpansionTermsWrangler(LinearRecurrenceBasedExpansionTermsWrangler) pde_dict[tuple(mi)] = 1 return pde_dict - def get_reduced_coeffs(self, nullspace): + def _get_reduced_coeffs(self, nullspace): idx = [] for i, mi in enumerate(self.get_full_coefficient_identifiers()): # Return only the derivatives with the order of the last dimension @@ -521,7 +521,7 @@ class HelmholtzExpansionTermsWrangler(LinearRecurrenceBasedExpansionTermsWrangle pde_dict[tuple([0]*self.dim)] = 1 return pde_dict - def get_reduced_coeffs(self, nullspace): + def _get_reduced_coeffs(self, nullspace): idx = [] for i, mi in enumerate(self.get_full_coefficient_identifiers()): # Return only the derivatives with the order of the last dimension -- GitLab