| 363 | //----------------------------------------------------------------------------- |
| 364 | template <std::floating_point T> |
| 365 | void FiniteElement<T>::tabulate(std::span<T> values, std::span<const T> X, |
| 366 | std::array<std::size_t, 2> shape, |
| 367 | int order) const |
| 368 | { |
| 369 | assert(_element); |
| 370 | _element->tabulate(order, X, shape, values); |
| 371 | } |
| 372 | //----------------------------------------------------------------------------- |
| 373 | template <std::floating_point T> |
| 374 | std::pair<std::vector<T>, std::array<std::size_t, 4>> |
no outgoing calls