mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-21 10:00:30 +00:00
Release Cosmopolitan v3.6.0
This release is an atomic upgrade to GCC 14.1.0 with C23 and C++23
This commit is contained in:
parent
62ace3623a
commit
5660ec4741
1585 changed files with 117353 additions and 271644 deletions
92
third_party/libcxx/numbers
vendored
92
third_party/libcxx/numbers
vendored
|
@ -58,16 +58,15 @@ namespace std::numbers {
|
|||
}
|
||||
*/
|
||||
|
||||
#include <__assert> // all public C++ headers provide the assertion handler
|
||||
#include <__concepts/arithmetic.h>
|
||||
#include <__config>
|
||||
#include <version>
|
||||
|
||||
#if _LIBCPP_STD_VER >= 20
|
||||
|
||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
# if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
# pragma GCC system_header
|
||||
# endif
|
||||
|
||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||
|
||||
|
@ -77,38 +76,65 @@ template <class _Tp>
|
|||
inline constexpr bool __false = false;
|
||||
|
||||
template <class _Tp>
|
||||
struct __illformed
|
||||
{
|
||||
static_assert(__false<_Tp>, "A program that instantiates a primary template of a mathematical constant variable template is ill-formed.");
|
||||
struct __illformed {
|
||||
static_assert(
|
||||
__false<_Tp>,
|
||||
"A program that instantiates a primary template of a mathematical constant variable template is ill-formed.");
|
||||
};
|
||||
|
||||
template <class _Tp> inline constexpr _Tp e_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp log2e_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp log10e_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp pi_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp inv_pi_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp inv_sqrtpi_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp ln2_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp ln10_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp sqrt2_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp sqrt3_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp inv_sqrt3_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp egamma_v = __illformed<_Tp>{};
|
||||
template <class _Tp> inline constexpr _Tp phi_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp e_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp log2e_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp log10e_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp pi_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp inv_pi_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp inv_sqrtpi_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp ln2_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp ln10_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp sqrt2_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp sqrt3_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp inv_sqrt3_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp egamma_v = __illformed<_Tp>{};
|
||||
template <class _Tp>
|
||||
inline constexpr _Tp phi_v = __illformed<_Tp>{};
|
||||
|
||||
template <floating_point _Tp> inline constexpr _Tp e_v<_Tp> = 2.718281828459045235360287471352662;
|
||||
template <floating_point _Tp> inline constexpr _Tp log2e_v<_Tp> = 1.442695040888963407359924681001892;
|
||||
template <floating_point _Tp> inline constexpr _Tp log10e_v<_Tp> = 0.434294481903251827651128918916605;
|
||||
template <floating_point _Tp> inline constexpr _Tp pi_v<_Tp> = 3.141592653589793238462643383279502;
|
||||
template <floating_point _Tp> inline constexpr _Tp inv_pi_v<_Tp> = 0.318309886183790671537767526745028;
|
||||
template <floating_point _Tp> inline constexpr _Tp inv_sqrtpi_v<_Tp> = 0.564189583547756286948079451560772;
|
||||
template <floating_point _Tp> inline constexpr _Tp ln2_v<_Tp> = 0.693147180559945309417232121458176;
|
||||
template <floating_point _Tp> inline constexpr _Tp ln10_v<_Tp> = 2.302585092994045684017991454684364;
|
||||
template <floating_point _Tp> inline constexpr _Tp sqrt2_v<_Tp> = 1.414213562373095048801688724209698;
|
||||
template <floating_point _Tp> inline constexpr _Tp sqrt3_v<_Tp> = 1.732050807568877293527446341505872;
|
||||
template <floating_point _Tp> inline constexpr _Tp inv_sqrt3_v<_Tp> = 0.577350269189625764509148780501957;
|
||||
template <floating_point _Tp> inline constexpr _Tp egamma_v<_Tp> = 0.577215664901532860606512090082402;
|
||||
template <floating_point _Tp> inline constexpr _Tp phi_v<_Tp> = 1.618033988749894848204586834365638;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp e_v<_Tp> = 2.718281828459045235360287471352662;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp log2e_v<_Tp> = 1.442695040888963407359924681001892;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp log10e_v<_Tp> = 0.434294481903251827651128918916605;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp pi_v<_Tp> = 3.141592653589793238462643383279502;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp inv_pi_v<_Tp> = 0.318309886183790671537767526745028;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp inv_sqrtpi_v<_Tp> = 0.564189583547756286948079451560772;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp ln2_v<_Tp> = 0.693147180559945309417232121458176;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp ln10_v<_Tp> = 2.302585092994045684017991454684364;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp sqrt2_v<_Tp> = 1.414213562373095048801688724209698;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp sqrt3_v<_Tp> = 1.732050807568877293527446341505872;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp inv_sqrt3_v<_Tp> = 0.577350269189625764509148780501957;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp egamma_v<_Tp> = 0.577215664901532860606512090082402;
|
||||
template <floating_point _Tp>
|
||||
inline constexpr _Tp phi_v<_Tp> = 1.618033988749894848204586834365638;
|
||||
|
||||
inline constexpr double e = e_v<double>;
|
||||
inline constexpr double log2e = log2e_v<double>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue