Skip to content

Commit 625f691

Browse files
committed
Change reference to get_contaning_cells
1 parent 7efee14 commit 625f691

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

simpeg/maps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6238,7 +6238,7 @@ def projection(self):
62386238
Set the projection matrix with partial volumes
62396239
"""
62406240
if getattr(self, "_projection", None) is None:
6241-
in_local = self.local_mesh._get_containing_cell_indexes(
6241+
in_local = self.local_mesh.get_containing_cells(
62426242
self.global_mesh.cell_centers
62436243
)
62446244

@@ -6257,7 +6257,7 @@ def projection(self):
62576257

62586258
if self.enforce_active:
62596259
self.local_active[
6260-
self.local_mesh._get_containing_cell_indexes(
6260+
self.local_mesh.get_containing_cells(
62616261
self.global_mesh.cell_centers[~self.global_active, :]
62626262
)
62636263
] = False

0 commit comments

Comments
 (0)