Skip to content

Commit

Permalink
spurious file
Browse files Browse the repository at this point in the history
  • Loading branch information
jtlap committed Dec 5, 2023
1 parent 4bc2031 commit b5ba595
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 57 deletions.
13 changes: 7 additions & 6 deletions include/kyosu/types/impl/bessel/sb_ikn.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,14 @@ namespace kyosu::_
auto sb_i2n(N n, Z z, R & sis) noexcept
{
using e_t = as_real_type_t<Z>;
auto iton = [](N n){
if (n%4 == 0) return complex(eve::one(eve::as<e_t>()));
else if (n%4 == 1) return complex(eve::zero(eve::as<e_t>()), eve::one(eve::as<e_t>()));
else if (n%4 == 2) return complex(eve::mone(eve::as<e_t>()));
else return complex(eve::zero(eve::as<e_t>()), eve::mone(eve::as<e_t>()));
auto riton = [](N n){
n = n & N(3);
if (n == 0) return complex(eve::one(eve::as<e_t>()));
else if (n == 1) return complex(eve::zero(eve::as<e_t>()), eve::mone(eve::as<e_t>()));
else if (n == 2) return complex(eve::mone(eve::as<e_t>()));
else return complex(eve::zero(eve::as<e_t>()), eve::one(eve::as<e_t>()));
};
return rec(iton(n +1))*sph_bessel_yn(n,muli(z), sis);
return riton(n+1)*sph_bessel_yn(n,muli(z), sis);
}


Expand Down
51 changes: 0 additions & 51 deletions include/kyosu/types/impl/detail/cylseq.hpp

This file was deleted.

0 comments on commit b5ba595

Please sign in to comment.