Skip to content

Commit

Permalink
periodic
Browse files Browse the repository at this point in the history
  • Loading branch information
blegouix committed Jul 1, 2024
1 parent b3a974c commit 6b42c78
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions include/ddc/kernels/splines/splines_linear_problem_maker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,6 @@ class SplinesLinearProblemMaker
assert(kl < n);
assert(ku < n);
int const bottom_size = std::max(kl, ku);
int const top_size = n - bottom_size;

if (bottom_size * (n + top_size) + (2 * kl + ku + 1) * top_size >= n * n) {
return std::make_unique<SplinesLinearProblemDense<ExecSpace>>(n);
}

return make_new_block_matrix_with_band_main_block<ExecSpace>(n, kl, ku, pds, bottom_size);
}
Expand Down

0 comments on commit 6b42c78

Please sign in to comment.