Skip to content

Commit

Permalink
flake
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrubeck committed Nov 8, 2023
1 parent dc2ea6c commit 5e4cb01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion FIAT/expansions.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ def dubiner_recurrence(dim, n, order, ref_pts, jacobian):
results = tuple([None] * num_members for i in range(order+1))
phi, dphi, ddphi = results + (None,) * (2-order)

outer = lambda x, y: x[:, None, ...] * y[None, ...]
outer = lambda x, y: x[:, None, ...] * y[None, ...]
sym_outer = lambda x, y: outer(x, y) + outer(y, x)

pad_dim = dim + 2
dX = pad_jacobian(jacobian, pad_dim)
phi[0] = sum((ref_pts[i] - ref_pts[i] for i in range(dim)), 1.)
Expand Down

0 comments on commit 5e4cb01

Please sign in to comment.