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

Add a comment

parent 56cca9eb
No related branches found
No related tags found
1 merge request!68Specify the PDE symbolically
......@@ -458,6 +458,12 @@ class LinearRecurrenceBasedExpansionTermsWrangler(ExpansionTermsWrangler):
def get_reduced_coeffs(self, nullspace):
"""
Returns the indices of the reduced set of derivatives which are stored.
Override this method if the reduced set is known analytically.
This method does elementary row operations to figure out which rows are
linearly dependent on the previous rows. Partial pivoting is not done
to preserve the order so that a row is not linearly dependent on a row
that came after in the original row order.
"""
mat = nullspace.copy()
nrows = mat.shape[0]
......
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