|
20 | 20 |
|
21 | 21 | namespace iganet { |
22 | 22 |
|
| 23 | +// clang-format off |
23 | 24 | /// @brief Enumerator for the collocation point specifier |
24 | 25 | enum class collPts : short_t { |
25 | | - greville = 0, /*!< Greville points */ |
26 | | - greville_interior = 1, /*!< Greville points in the interior */ |
27 | | - greville_ref1 = 2, /*!< Greville points, once refined */ |
28 | | - greville_interior_ref1 = |
29 | | - 3, /*!< Greville points in the interior, once refined */ |
30 | | - greville_ref2 = 4, /*!< Greville points, twice refined */ |
31 | | - greville_interior_ref2 = |
32 | | - 5, /*!< Greville points in the interior, twice refined */ |
| 26 | + greville = 0, /*!< Greville points */ |
| 27 | + greville_interior = 1, /*!< Greville points in the interior */ |
| 28 | + greville_ref1 = 2, /*!< Greville points, once refined */ |
| 29 | + greville_interior_ref1 = 3, /*!< Greville points in the interior, once refined */ |
| 30 | + greville_ref2 = 4, /*!< Greville points, twice refined */ |
| 31 | + greville_interior_ref2 = 5, /*!< Greville points in the interior, twice refined */ |
33 | 32 | }; |
34 | | - |
| 33 | +// clang-format on |
| 34 | + |
35 | 35 | namespace detail { |
36 | 36 | template <typename T> |
37 | 37 | concept HasAsTensor = requires(T a) { |
|
0 commit comments