add_subexpressions_for_constants and new_filtered fix
Two small patches:
- Added a function
add_subexpressions_for_constants
topystencils.simp
. This function extracts numerical constants like2
or1/3
from equations. This is helpful because SymPy does not exclude common factors from sums if they are not symbols. Excluding them this way can reduce the number of multiplications. In some cases, additional common subexpressions can also be found. - Changed
AssignmentCollection.new_filtered
to useself.copy
to preserve other members of the assignment collection.