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

Method set

cpp/dolfinx/la/Vector.h:196–200  ·  view source on GitHub ↗

@deprecated Use `std::ranges::fill(u.array(), v)` instead. @brief Set all entries (including ghosts). @param[in] v Value to set all entries to (on calling rank).

Source from the content-addressed store, hash-verified

194 ///
195 /// @param[in] v Value to set all entries to (on calling rank).
196 [[deprecated("Use std::ranges::fill(u.array(), v) instead.")]] void
197 set(value_type v)
198 {
199 std::ranges::fill(_x, v);
200 }
201
202 /// @brief Begin scatter (send) of local data that is ghosted on other
203 /// processes.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected