Interpolate a cpp.fem.Function.
(u0)
| 514 | |
| 515 | @singledispatch |
| 516 | def _interpolate(u0): |
| 517 | """Interpolate a cpp.fem.Function.""" |
| 518 | self._cpp_object.interpolate(u0, cells0, cells1) |
| 519 | |
| 520 | @_interpolate.register(Function) |
| 521 | def _(u0: Function): |
nothing calls this directly
no test coverage detected