@@ -2238,11 +2238,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
22382238 using inputs_interior_knot_indices_type = decltype (find_interior_knot_indices(
22392239 std::declval<std::tuple<Inputs...>>()));
22402240
2241- // std::tuple<
2242- // decltype(std::declval<Inputs>()
2243- // .template find_knot_indices<functionspace::interior>(
2244- // std::declval<typename Inputs::eval_type>()))...>;
2245-
22462241 // / @brief Type alias for the type of the index-th knot indices of the inputs
22472242 // / in the interior
22482243 template <std::size_t index>
@@ -2252,11 +2247,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
22522247 // / @brief Type of the knot indices of the inputs at the boundary
22532248 using inputs_boundary_knot_indices_type = decltype (find_boundary_knot_indices(
22542249 std::declval<std::tuple<Inputs...>>()));
2255- // std::tuple<
2256- // decltype(std::declval<Inputs>()
2257- // .template find_knot_indices<functionspace::boundary>(
2258- // std::declval<
2259- // typename Inputs::boundary_eval_type>()))...>;
22602250
22612251 // / @brief Type alias for the type of the index-th knot indices of the inputs
22622252 // / at the boundary
@@ -2269,11 +2259,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
22692259 decltype (find_interior_knot_indices(
22702260 std::declval<std::tuple<Outputs...>>()));
22712261
2272- // std::tuple<
2273- // decltype(std::declval<Outputs>()
2274- // .template find_knot_indices<functionspace::interior>(
2275- // std::declval<typename Outputs::eval_type>()))...>;
2276-
22772262 // / @brief Type alias for the type of the index-th knot indices of the outputs
22782263 // / in the interior
22792264 template <std::size_t index>
@@ -2285,12 +2270,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
22852270 decltype (find_boundary_knot_indices(
22862271 std::declval<std::tuple<Outputs...>>()));
22872272
2288- // std::tuple<
2289- // decltype(std::declval<Outputs>()
2290- // .template find_knot_indices<functionspace::boundary>(
2291- // std::declval<
2292- // typename Outputs::boundary_eval_type>()))...>;
2293-
22942273 // / @brief Type alias for the type of the index-th knot indices of the outputs
22952274 // / at the boundary
22962275 template <std::size_t index>
@@ -2302,11 +2281,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
23022281 decltype (find_interior_coeff_indices(
23032282 std::declval<std::tuple<Inputs...>>()));
23042283
2305- // std::tuple<
2306- // decltype(std::declval<Inputs>()
2307- // .template find_coeff_indices<functionspace::interior>(
2308- // std::declval<typename Inputs::eval_type>()))...>;
2309-
23102284 // / @brief Type alias for the type of the index-th coefficient indices of the
23112285 // / inputs in the interior
23122286 template <std::size_t index>
@@ -2318,12 +2292,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
23182292 decltype (find_boundary_coeff_indices(
23192293 std::declval<std::tuple<Inputs...>>()));
23202294
2321- // std::tuple<
2322- // decltype(std::declval<Inputs>()
2323- // .template find_coeff_indices<functionspace::boundary>(
2324- // std::declval<
2325- // typename Inputs::boundary_eval_type>()))...>;
2326-
23272295 // / @brief Type alias for the type of the index-th coefficient indices of the
23282296 // / inputs at the boundary
23292297 template <std::size_t index>
@@ -2335,11 +2303,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
23352303 decltype (find_interior_coeff_indices(
23362304 std::declval<std::tuple<Outputs...>>()));
23372305
2338- // std::tuple<
2339- // decltype(std::declval<Outputs>()
2340- // .template find_coeff_indices<functionspace::interior>(
2341- // std::declval<typename Outputs::eval_type>()))...>;
2342-
23432306 // / @brief Type alias for the type of the index-th coefficient indices of the
23442307 // / outputs in the interior
23452308 template <std::size_t index>
@@ -2351,12 +2314,6 @@ class IgANetCustomizable2<std::tuple<Inputs...>, std::tuple<Outputs...>, void> {
23512314 decltype (find_boundary_coeff_indices(
23522315 std::declval<std::tuple<Outputs...>>()));
23532316
2354- // std::tuple<
2355- // decltype(std::declval<Outputs>()
2356- // .template find_coeff_indices<functionspace::boundary>(
2357- // std::declval<
2358- // typename Outputs::boundary_eval_type>()))...>;
2359-
23602317 // / @brief Type alias for the type of the index-th coefficient indices of the
23612318 // / outputs at the boundary
23622319 template <std::size_t index>
0 commit comments