| 53 | //----------------------------------------------------------------------------- |
| 54 | template <std::floating_point T> |
| 55 | void CoordinateElement<T>::tabulate(int nd, std::span<const T> X, |
| 56 | std::array<std::size_t, 2> shape, |
| 57 | std::span<T> basis) const |
| 58 | { |
| 59 | assert(_element); |
| 60 | _element->tabulate(nd, X, shape, basis); |
| 61 | } |
| 62 | //-------------------------------------------------------------------------------- |
| 63 | template <std::floating_point T> |
| 64 | void CoordinateElement<T>::permute_subentity_closure(std::span<std::int32_t> d, |