Skip to content

Commit 2764266

Browse files
committed
Add AsymptoticDividingLineTaylorExpansion class, todo: add test case
1 parent cdf49d5 commit 2764266

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sumpy/expansion/local.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
.. autoclass:: Y2DLocalExpansion
5050
.. autoclass:: LineTaylorLocalExpansion
5151
52+
5253
"""
5354

5455

@@ -166,8 +167,9 @@ def translate_from(self, src_expansion, src_coeff_exprs, src_rscale,
166167
# }}}
167168

168169

169-
# {{{ Asymline taylor
170-
class AsymLineTaylorLocalExpansion(LocalExpansionBase):
170+
# {{{ AsymDline taylor
171+
class AsymptoticsDividingLineTaylorExpansion(LocalExpansionBase):
172+
171173
def __init__(self, kernel, asymptotic, order, tau=1, use_rscale=None, m2l_translation=None):
172174
super().__init__(kernel, order, use_rscale, m2l_translation)
173175
self.asymptotic = asymptotic

0 commit comments

Comments
 (0)