Skip to content

Commit

Permalink
Fixes #1108 (#1111)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala authored Mar 25, 2024
1 parent c6d3463 commit c5edf42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions skfem/assembly/basis/cell_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ def project(self, interp, elements=None, dtype=None):
elements
Optionally perform the projection on a subset of elements. The
values of the remaining DOFs are zero.
dtype
Set to `np.complex64` or similar to use complex numbers.
"""
from skfem.utils import solve, condense
Expand Down
2 changes: 2 additions & 0 deletions skfem/assembly/basis/facet_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ def project(self, interp, facets=None, dtype=None):
facets
Optionally perform the projection on a subset of facets. The
values of the remaining DOFs are zero.
dtype
Set to `np.complex64` or similar to use complex numbers.
"""
from skfem.utils import solve, condense
Expand Down

0 comments on commit c5edf42

Please sign in to comment.