Skip to content

Commit

Permalink
Merge pull request #157 from BoostGSoC21/finish_bessel_k
Browse files Browse the repository at this point in the history
Finish Math tests cyl_bessel_k
  • Loading branch information
ckormanyos authored Dec 24, 2024
2 parents cc83437 + 522924f commit d1871ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multiprecision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
fail-fast: false
matrix:
compiler: [ g++-12 ]
suite: [ specfun_mpfr, specfun_gmp, specfun_cpp_dec_float, specfun_cpp_bin_float, specfun_float128 ]
suite: [ specfun_mpfr, specfun_gmp, specfun_cpp_dec_float, specfun_cpp_bin_float, specfun_float128, specfun_cpp_double_double ]
steps:
- uses: actions/checkout@v4
with:
Expand Down
5 changes: 4 additions & 1 deletion include/boost/multiprecision/cpp_double_fp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,10 @@ class cpp_double_fp_backend
}
}

constexpr bool isneg() const noexcept { return (data.first < 0); }
constexpr bool isneg() const noexcept
{
return (data.first < 0);
}

// Getters/Setters
constexpr const float_type& my_first () const noexcept { return data.first; }
Expand Down

0 comments on commit d1871ca

Please sign in to comment.