source: src/libcfa/limits.c @ 0bddc62d

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 0bddc62d was 3d9b5da, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

fix library includes from < to ", and generalize rational IO to use iostream from fstream

  • Property mode set to 100644
File size: 5.3 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// limits.c --
8//
9// Author           : Peter A. Buhr
10// Created On       : Wed Apr  6 18:06:52 2016
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Apr  7 17:18:45 2016
13// Update Count     : 11
14//
15
16#include "limits"
17
18// Integral Constants
19
20const short int MIN = -32768;
21const int MIN = -2147483648;
22const long int MIN = -9223372036854775807L - 1L;
23const long long int MIN = -9223372036854775807LL - 1LL;
24
25const short int MAX = 32767;
26const unsigned short int MAX = 65535;
27const int MAX = 2147483647;
28const unsigned int MAX = 4294967295_U;
29const long int MAX = 9223372036854775807_L;
30const unsigned long int MAX = 4294967295_U;
31const long long int MAX = 9223372036854775807_LL;
32const unsigned long long int MAX = 18446744073709551615_ULL;
33
34// Floating-Point Constants
35
36const float PI = 3.141592_F;                                                    // pi
37const float PI_2 = 1.570796_F;                                                  // pi / 2
38const float PI_4 = 0.7853981_F;                                                 // pi / 4
39const float _1_PI = 0.3183098_F;                                                // 1 / pi
40const float _2_PI = 0.6366197_F;                                                // 2 / pi
41const float _2_SQRT_PI = 1.128379_F;                                    // 2 / sqrt(pi)
42
43const double PI = 3.14159265358979323846_D;                             // pi
44const double PI_2 = 1.57079632679489661923_D;                   // pi / 2
45const double PI_4 = 0.78539816339744830962_D;                   // pi / 4
46const double _1_PI = 0.31830988618379067154_D;                  // 1 / pi
47const double _2_PI = 0.63661977236758134308_D;                  // 2 / pi
48const double _2_SQRT_PI = 1.12837916709551257390_D;             // 2 / sqrt(pi)
49
50const long double PI = 3.1415926535897932384626433832795029_DL; // pi
51const long double PI_2 = 1.5707963267948966192313216916397514_DL; // pi / 2
52const long double PI_4 = 0.7853981633974483096156608458198757_DL; // pi / 4
53const long double _1_PI = 0.3183098861837906715377675267450287_DL; // 1 / pi
54const long double _2_PI = 0.6366197723675813430755350534900574_DL; // 2 / pi
55const long double _2_SQRT_PI = 1.1283791670955125738961589031215452_DL; // 2 / sqrt(pi)
56
57const _Complex PI = 3.14159265358979323846_D+0.0_iD;    // pi
58const _Complex PI_2 = 1.57079632679489661923_D+0.0_iD;  // pi / 2
59const _Complex PI_4 = 0.78539816339744830962_D+0.0_iD;  // pi / 4
60const _Complex _1_PI = 0.31830988618379067154_D+0.0_iD; // 1 / pi
61const _Complex _2_PI = 0.63661977236758134308_D+0.0_iD; // 2 / pi
62const _Complex _2_SQRT_PI = 1.12837916709551257390_D+0.0_iD; // 2 / sqrt(pi)
63
64const long _Complex PI = 3.1415926535897932384626433832795029_L+0.0iL; // pi
65const long _Complex PI_2 = 1.5707963267948966192313216916397514_L+0.0iL; // pi / 2
66const long _Complex PI_4 = 0.7853981633974483096156608458198757_L+0.0iL; // pi / 4
67const long _Complex _1_PI = 0.3183098861837906715377675267450287_L+0.0iL; // 1 / pi
68const long _Complex _2_PI = 0.6366197723675813430755350534900574_L+0.0iL; // 2 / pi
69const long _Complex _2_SQRT_PI = 1.1283791670955125738961589031215452_L+0.0iL; // 2 / sqrt(pi)
70
71const float E = 2.718281;                                                               // e
72const float LOG2_E = 1.442695;                                                  // log_2(e)
73const float LOG10_E = 0.4342944;                                                // log_10(e)
74const float LN_2 = 0.6931471;                                                   // log_e(2)
75const float LN_10 = 2.302585;                                                   // log_e(10)
76const float SQRT_2 = 1.414213;                                                  // sqrt(2)
77const float _1_SQRT_2 = 0.7071067;                                              // 1 / sqrt(2)
78
79const double E = 2.7182818284590452354_D;                               // e
80const double LOG2_E = 1.4426950408889634074_D;                  // log_2(e)
81const double LOG10_E = 0.43429448190325182765_D;                // log_10(e)
82const double LN_2 = 0.69314718055994530942_D;                   // log_e(2)
83const double LN_10 = 2.30258509299404568402_D;                  // log_e(10)
84const double SQRT_2 = 1.41421356237309504880_D;                 // sqrt(2)
85const double _1_SQRT_2 = 0.70710678118654752440_D;              // 1 / sqrt(2)
86
87const long double E = 2.7182818284590452353602874713526625_DL; // e
88const long double LOG2_E = 1.4426950408889634073599246810018921_DL; // log_2(e)
89const long double LOG10_E = 0.4342944819032518276511289189166051_DL; // log_10(e)
90const long double LN_2 = 0.6931471805599453094172321214581766_DL; // log_e(2)
91const long double LN_10 = 2.3025850929940456840179914546843642_DL; // log_e(10)
92const long double SQRT_2 = 1.4142135623730950488016887242096981_DL; // sqrt(2)
93const long double _1_SQRT_2 = 0.7071067811865475244008443621048490_DL; // 1/sqrt(2)
94
95const _Complex E = 2.7182818284590452354_D+0.0_iD;              // e
96const _Complex LOG2_E = 1.4426950408889634074_D+0.0_iD; // log_2(e)
97const _Complex LOG10_E = 0.43429448190325182765_D+0.0_iD; // log_10(e)
98const _Complex LN_2 = 0.69314718055994530942_D+0.0_iD;  // log_e(2)
99const _Complex LN_10 = 2.30258509299404568402_D+0.0_iD; // log_e(10)
100const _Complex SQRT_2 = 1.41421356237309504880_D+0.0_iD; // sqrt(2)
101const _Complex _1_SQRT_2 = 0.70710678118654752440_D+0.0_iD; // 1 / sqrt(2)
102
103const long _Complex E = 2.7182818284590452353602874713526625_L+0.0_iL; // e
104const long _Complex LOG2_E = 1.4426950408889634073599246810018921_L+0.0_iL; // log_2(e)
105const long _Complex LOG10_E = 0.4342944819032518276511289189166051_L+0.0_iL; // log_10(e)
106const long _Complex LN_2 = 0.6931471805599453094172321214581766_L+0.0_iL; // log_e(2)
107const long _Complex LN_10 = 2.3025850929940456840179914546843642_L+0.0_iL; // log_e(10)
108const long _Complex SQRT_2 = 1.4142135623730950488016887242096981_L+0.0_iL; // sqrt(2)
109const long _Complex _1_SQRT_2 = 0.7071067811865475244008443621048490_L+0.0_iL; // 1 / sqrt(2)
110
111// Local Variables: //
112// mode: c //
113// tab-width: 4 //
114// End: //
Note: See TracBrowser for help on using the repository browser.