//
// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
//
// The contents of this file are covered under the licence agreement in the
// file "LICENCE" distributed with Cforall.
//
// limits.c --
//
// Author           : Peter A. Buhr
// Created On       : Tue May 10 20:44:20 2016
// Last Modified By : Peter A. Buhr
// Last Modified On : Tue May 10 20:45:28 2016
// Update Count     : 1
//

#include <limits>

// Integral Constants

short int m = MIN;
int m = MIN;
long int m = MIN;
long long int m = MIN;

short int M = MAX;
unsigned short int M = MAX;
int M = MAX;
unsigned int M = MAX;
long int M = MAX;
unsigned long int M = MAX;
long long int M = MAX;
unsigned long long int M = MAX;

// Floating-Point Constants

float pi = PI;
float pi_2 = PI_2;
float pi_4 = PI_4;
float _1_pi = _1_PI;
float _2_pi = _2_PI;
float _2_sqrt_pi = _2_SQRT_PI;

double pi = PI;
double pi_2 = PI_2;
double pi_4 = PI_4;
double _1_pi = _1_PI;
double _2_pi = _2_PI;
double _2_SQRT_pi = _2_SQRT_PI;

long double pi = PI;
long double pi_2 = PI_2;
long double pi_4 = PI_4;
long double _1_pi = _1_PI;
long double _2_pi = _2_PI;
long double _2_sqrt_pi = _2_SQRT_PI;

_Complex pi = PI;
_Complex pi_2 = PI_2;
_Complex pi_4 = PI_4;
_Complex _1_pi = _1_PI;
_Complex _2_pi = _2_PI;
_Complex _2_sqrt_pi = _2_SQRT_PI;

long _Complex pi = PI;
long _Complex pi_2 = PI_2;
long _Complex pi_4 = PI_4;
long _Complex _1_pi = _1_PI;
long _Complex _2_pi = _2_PI;
long _Complex _2_sqrt_pi = _2_SQRT_PI;

float e = E;
float log2_e = LOG2_E;
float log10_e = LOG10_E;
float ln_2 = LN_2;
float ln_10 = LN_10;
float sqrt_2 = SQRT_2;
float _1_sqrt_2 = _1_SQRT_2;

double e = E;
double log2_e = LOG2_E;
double log10_e = LOG10_E;
double ln_2 = LN_2;
double ln_10 = LN_10;
double sqrt_2 = SQRT_2;
double _1_sqrt_2 = _1_SQRT_2;

long double e = E;
long double log2_e = LOG2_E;
long double log10_e = LOG10_E;
long double ln_2 = LN_2;
long double ln_10 = LN_10;
long double sqrt_2 = SQRT_2;
long double _1_sqrt_2 = _1_SQRT_2;

_Complex e = E;
_Complex log2_e = LOG2_E;
_Complex log10_e = LOG10_E;
_Complex ln_2 = LN_2;
_Complex ln_10 = LN_10;
_Complex sqrt_2 = SQRT_2;
_Complex _1_sqrt_2 = _1_SQRT_2;

long _Complex e = E;
long _Complex log2_e = LOG2_E;
long _Complex log10_e = LOG10_E;
long _Complex ln_2 = LN_2;
long _Complex ln_10 = LN_10;
long _Complex sqrt_2 = SQRT_2;
long _Complex _1_sqrt_2 = _1_SQRT_2;

int main(int argc, char const *argv[]) {
	//DUMMY
	return 0;
}

// Local Variables: //
// tab-width: 4 //
// compile-command: "cfa limits.c" //
// End: //
