Skip to content
Snippets Groups Projects
Commit 56cca9eb authored by Isuru Fernando's avatar Isuru Fernando
Browse files

Comment get_reduced_coeffs specializations

parent d85e90d2
No related branches found
No related tags found
1 merge request!68Specify the PDE symbolically
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment