From 090bf6b77d575a1c86c3ceb3d8f943da4909ab07 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 20 Oct 2015 22:33:19 -0500 Subject: [PATCH] Fix boundary handling in _compute_facial_adjacency_from_vertices --- meshmode/mesh/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshmode/mesh/__init__.py b/meshmode/mesh/__init__.py index f6ebe0cc..3077143d 100644 --- a/meshmode/mesh/__init__.py +++ b/meshmode/mesh/__init__.py @@ -828,7 +828,7 @@ def _compute_facial_adjacency_from_vertices(mesh): idx = fill_count.get((igrp, None), 0) fill_count[igrp, None] = idx + 1 - fagrp = facial_adjacency_groups[igroup][inb_grp] + fagrp = facial_adjacency_groups[igroup][None] fagrp.elements[idx] = iel fagrp.element_faces[idx] = iface -- GitLab