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

Fix tests

parent 5f0916cf
No related branches found
No related tags found
1 merge request!120Biharmonic kernel fixes
numpy
sympy==1.1.1
git+https://github.com/inducer/pytools
git+https://github.com/inducer/pymbolic
git+https://github.com/inducer/islpy
git+https://github.com/inducer/pyopencl
git+https://gitlab.tiker.net/inducer/boxtree
git+https://github.com/inducer/loopy
git+https://github.com/inducer/pyfmmlib
git+https://github.com/inducer/pytools
......@@ -86,7 +86,8 @@ class VolumeTaylorMultipoleExpansionBase(MultipoleExpansionBase):
prod = 1
derivative_mi = list(mi)
for nderivative, deriv_dim in enumerate(value):
prod *= -derivative_mi[deriv_dim]*dir_vecs[nderivative][deriv_dim]
prod *= -derivative_mi[deriv_dim]
prod *= dir_vecs[nderivative][deriv_dim]
derivative_mi[deriv_dim] -= 1
if any(v < 0 for v in derivative_mi):
continue
......
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