Assemble linear form into a vector.
(
L: typing.Any,
constants: npt.NDArray | None = None,
coeffs: dict[tuple[IntegralType, int], npt.NDArray] | None = None,
)
| 170 | |
| 171 | @functools.singledispatch |
| 172 | def assemble_vector( |
| 173 | L: typing.Any, |
| 174 | constants: npt.NDArray | None = None, |
| 175 | coeffs: dict[tuple[IntegralType, int], npt.NDArray] | None = None, |
| 176 | ) -> la.Vector: |
| 177 | """Assemble linear form into a vector.""" |
| 178 | return _assemble_vector_form(L, constants, coeffs) |
| 179 | |
| 180 | |
| 181 | @assemble_vector.register |
nothing calls this directly
no test coverage detected