Skip to content

Commit

Permalink
Merge pull request #2474 from firedrakeproject/smaclachlan/FixASMVankaPC
Browse files Browse the repository at this point in the history
Fix to ASMVankaPC
  • Loading branch information
dham authored Jun 20, 2022
2 parents 241a390 + a41e0bd commit 93e1c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firedrake/preconditioners/asm.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def get_patches(self, V):
star, _ = mesh_dm.getTransitiveClosure(seed, useCone=False)
pt_array = set()
for pt in star.tolist():
closure, _ = mesh_dm.getTransitiveClosure(seed, useCone=True)
closure, _ = mesh_dm.getTransitiveClosure(pt, useCone=True)
pt_array.update(closure.tolist())

pt_array = order_points(mesh_dm, pt_array, ordering, self.prefix)
Expand Down

0 comments on commit 93e1c64

Please sign in to comment.