MCPcopy Create free account
hub / github.com/FEniCS/dolfinx / assemble_vector

Function assemble_vector

cpp/dolfinx/fem/assembler.h:244–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>
244void 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

Callers

nothing calls this directly

Calls 4

make_coefficients_spanFunction · 0.85
pack_coefficientsFunction · 0.70
pack_constantsFunction · 0.70

Tested by

no test coverage detected