| 242 | dolfinx::scalar T = typename std::remove_cvref_t<V>::value_type> |
| 243 | requires std::is_same_v<typename std::remove_cvref_t<V>::value_type, T> |
| 244 | void assemble_vector( |
| 245 | V&& b, const Form<T, U>& L, std::span<const T> constants, |
| 246 | const std::map<std::pair<IntegralType, int>, |
| 247 | std::pair<std::span<const T>, int>>& coefficients) |
| 248 | { |
| 249 | impl::assemble_vector(b, L, constants, coefficients); |
| 250 | } |
| 251 | |
| 252 | /// @brief Assemble linear form into a vector. |
| 253 | /// @param[in,out] b Vector to be assembled. It will not be zeroed |
nothing calls this directly
no test coverage detected