Skip to content

Commit

Permalink
Expose transpose_dofmap in dolfinx.fem (#2932)
Browse files Browse the repository at this point in the history
* Add transpose-dofmap to __all__

* Remove noqa
  • Loading branch information
jorgensd committed Dec 14, 2023
1 parent 227f1d3 commit 635b3f0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/dolfinx/fem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Tools for assembling and manipulating finite element forms."""

from dolfinx.cpp.fem import transpose_dofmap # noqa
from dolfinx.cpp.fem import (IntegralType,
create_nonmatching_meshes_interpolation_data)
create_nonmatching_meshes_interpolation_data, transpose_dofmap)
from dolfinx.cpp.fem import create_sparsity_pattern as _create_sparsity_pattern
from dolfinx.fem.assemble import (apply_lifting, assemble_matrix,
assemble_scalar, assemble_vector,
Expand Down Expand Up @@ -44,4 +43,4 @@ def create_sparsity_pattern(a: Form):
"DirichletBC", "dirichletbc", "bcs_by_block", "DofMap", "Form",
"form", "IntegralType", "create_vector",
"locate_dofs_geometrical", "locate_dofs_topological",
"extract_function_spaces", "create_nonmatching_meshes_interpolation_data"]
"extract_function_spaces", "transpose_dofmap", "create_nonmatching_meshes_interpolation_data"]

0 comments on commit 635b3f0

Please sign in to comment.