Skip to content

Commit c13d10e

Browse files
authored
[Splines] Remove is_radial
1 parent 002fc24 commit c13d10e

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

include/ddc/kernels/splines/bsplines_non_uniform.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ class NonUniformBSplines : detail::NonUniformBSplinesBase
5151
return Tag::PERIODIC;
5252
}
5353

54-
static constexpr bool is_radial() noexcept
55-
{
56-
return false;
57-
}
58-
5954
static constexpr bool is_uniform() noexcept
6055
{
6156
return false;

include/ddc/kernels/splines/bsplines_uniform.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ class UniformBSplines : detail::UniformBSplinesBase
5050
return Tag::PERIODIC;
5151
}
5252

53-
static constexpr bool is_radial() noexcept
54-
{
55-
return false;
56-
}
57-
5853
static constexpr bool is_uniform() noexcept
5954
{
6055
return true;

include/ddc/kernels/splines/spline_builder.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ class SplineBuilder
5151
&& (BcXmax == ddc::BoundCond::PERIODIC))
5252
|| (!BSplines::is_periodic() && (BcXmin != ddc::BoundCond::PERIODIC)
5353
&& (BcXmax != ddc::BoundCond::PERIODIC)));
54-
static_assert(!BSplines::is_radial());
5554

5655
private:
5756
using tag_type = typename InterpolationMesh::continuous_dimension_type;

0 commit comments

Comments
 (0)