limits.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __GECODE_LIMITS_HH__
00023 #define __GECODE_LIMITS_HH__
00024
00025 #include <climits>
00026 #include <cfloat>
00027
00028
00029
00030
00031
00032
00033 namespace Gecode { namespace Limits {
00034
00044 namespace Int {
00056
00057 const int int_max = ((INT_MAX)>>1) - 1;
00059 const int int_min = -int_max;
00060
00062 const double double_max = 9007199254740991.0;
00064 const double double_min = -9007199254740991.0;
00065
00066 }
00067
00068 namespace Set {
00075
00076 const int int_max = ((INT_MAX)>>2) - 1;
00078 const int int_min = -int_max;
00080 const unsigned int card_max = int_max-int_min+1;
00081 }
00082
00083 }}
00084
00085 #endif
00086
00087