24 #ifndef __SCIP_DEF_H__ 25 #define __SCIP_DEF_H__ 28 #define __STDC_LIMIT_MACROS 29 #define __STDC_CONSTANT_MACROS 44 #define GCC_VERSION (__GNUC__ * 100 \ 45 + __GNUC_MINOR__ * 10 \ 46 + __GNUC_PATCHLEVEL__) 53 #if defined(_MSC_VER) || ( __STDC_VERSION__ >= 199901L ) 54 #define SCIP_HAVE_VARIADIC_MACROS 1 62 #define SCIP_Bool unsigned int 69 #ifndef SCIP_Shortbool 70 #define SCIP_Shortbool uint8_t 76 #if defined(_WIN32) || defined(_WIN64) 78 #define strcasecmp _stricmp 79 #define strncasecmp _strnicmp 80 #define getcwd _getcwd 83 #define EXTERN __declspec(dllexport) 94 #if defined(_WIN32) || defined(_WIN64) || defined(__STDC__) 95 #define INLINE __inline 111 #define SCIP_VERSION 600 112 #define SCIP_SUBVERSION 0 113 #define SCIP_APIVERSION 33 114 #define SCIP_COPYRIGHT "Copyright (C) 2002-2018 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)" 121 #define SCIP_VARTYPE_BINARY_CHAR 'B' 122 #define SCIP_VARTYPE_INTEGER_CHAR 'I' 123 #define SCIP_VARTYPE_IMPLINT_CHAR 'M' 124 #define SCIP_VARTYPE_CONTINUOUS_CHAR 'C' 131 #define LLONG_MAX 9223372036854775807LL 132 #define LLONG_MIN (-LLONG_MAX - 1LL) 135 #define SCIP_Longint long long 136 #define SCIP_LONGINT_MAX LLONG_MAX 137 #define SCIP_LONGINT_MIN LLONG_MIN 138 #ifndef SCIP_LONGINT_FORMAT 139 #if defined(_WIN32) || defined(_WIN64) 140 #define SCIP_LONGINT_FORMAT "I64d" 142 #define SCIP_LONGINT_FORMAT "lld" 150 #define SCIP_Real double 151 #define SCIP_REAL_MAX (SCIP_Real)DBL_MAX 152 #define SCIP_REAL_MIN -(SCIP_Real)DBL_MAX 153 #define SCIP_REAL_FORMAT "lf" 155 #define SCIP_DEFAULT_INFINITY 1e+20 156 #define SCIP_DEFAULT_EPSILON 1e-09 157 #define SCIP_DEFAULT_SUMEPSILON 1e-06 158 #define SCIP_DEFAULT_FEASTOL 1e-06 159 #define SCIP_DEFAULT_CHECKFEASTOLFAC 1.0 160 #define SCIP_DEFAULT_LPFEASTOL 1e-06 161 #define SCIP_DEFAULT_DUALFEASTOL 1e-07 162 #define SCIP_DEFAULT_BARRIERCONVTOL 1e-10 163 #define SCIP_DEFAULT_BOUNDSTREPS 0.05 164 #define SCIP_DEFAULT_PSEUDOCOSTEPS 1e-01 165 #define SCIP_DEFAULT_PSEUDOCOSTDELTA 1e-04 166 #define SCIP_DEFAULT_RECOMPFAC 1e+07 167 #define SCIP_DEFAULT_HUGEVAL 1e+15 168 #define SCIP_MAXEPSILON 1e-03 169 #define SCIP_MINEPSILON 1e-20 170 #define SCIP_INVALID (double)1e+99 171 #define SCIP_UNKNOWN (double)1e+98 174 #define REALABS(x) (fabs(x)) 175 #define EPSEQ(x,y,eps) (REALABS((x)-(y)) <= (eps)) 176 #define EPSLT(x,y,eps) ((x)-(y) < -(eps)) 177 #define EPSLE(x,y,eps) ((x)-(y) <= (eps)) 178 #define EPSGT(x,y,eps) ((x)-(y) > (eps)) 179 #define EPSGE(x,y,eps) ((x)-(y) >= -(eps)) 180 #define EPSZ(x,eps) (REALABS(x) <= (eps)) 181 #define EPSP(x,eps) ((x) > (eps)) 182 #define EPSN(x,eps) ((x) < -(eps)) 183 #define EPSFLOOR(x,eps) (floor((x)+(eps))) 184 #define EPSCEIL(x,eps) (ceil((x)-(eps))) 185 #define EPSROUND(x,eps) (ceil((x)-0.5+(eps))) 186 #define EPSFRAC(x,eps) ((x)-EPSFLOOR(x,eps)) 187 #define EPSISINT(x,eps) (EPSFRAC(x,eps) <= (eps)) 191 #define SQR(x) ((x)*(x)) 192 #define SQRT(x) (sqrt(x)) 196 #if defined(_MSC_VER) && (_MSC_VER < 1800) 197 #define LOG2(x) (log(x) / log(2.0)) 199 #define LOG2(x) log2(x) 204 #define ABS(x) ((x) >= 0 ? (x) : -(x)) 208 #define MAX(x,y) ((x) >= (y) ? (x) : (y)) 209 #define MIN(x,y) ((x) <= (y) ? (x) : (y)) 213 #define MAX3(x,y,z) ((x) >= (y) ? MAX(x,z) : MAX(y,z)) 214 #define MIN3(x,y,z) ((x) <= (y) ? MIN(x,z) : MIN(y,z)) 219 #if defined(_WIN32) || defined(_WIN64) 220 #define LOG1P(x) (log(1.0+x)) 222 #define LOG1P(x) (log1p(x)) 227 #if defined(_MSC_VER) && (_MSC_VER < 1800) 228 #define COPYSIGN _copysign 230 #define COPYSIGN copysign 239 #define NULL ((void*)0) 243 #if defined(_MSC_VER) 244 #define RESTRICT __restrict 247 #define RESTRICT __restrict__ 248 #elif __STDC_VERSION__ >= 199901L 249 #define RESTRICT restrict 260 #define SCIP_MAXSTRLEN 1024 267 #define SCIP_MAXMEMSIZE (SIZE_MAX/2) 269 #define SCIP_HASHSIZE_PARAMS 2048 270 #define SCIP_HASHSIZE_NAMES 500 271 #define SCIP_HASHSIZE_CUTPOOLS 500 272 #define SCIP_HASHSIZE_CLIQUES 500 273 #define SCIP_HASHSIZE_NAMES_SMALL 100 274 #define SCIP_HASHSIZE_CUTPOOLS_SMALL 100 275 #define SCIP_HASHSIZE_CLIQUES_SMALL 100 276 #define SCIP_HASHSIZE_VBC 500 278 #define SCIP_DEFAULT_MEM_ARRAYGROWFAC 1.2 279 #define SCIP_DEFAULT_MEM_ARRAYGROWINIT 4 281 #define SCIP_MEM_NOLIMIT (SCIP_Longint)SCIP_LONGINT_MAX/1048576.0 287 #define SCIP_MAXTREEDEPTH 65534 293 #define SCIP_PROBINGSCORE_PENALTYRATIO 2 317 #define SCIPABORT() assert(FALSE) 319 #define SCIP_CALL_ABORT_QUIET(x) do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE ) 320 #define SCIP_CALL_QUIET(x) do { SCIP_RETCODE _restat_; if( (_restat_ = (x)) != SCIP_OKAY ) return _restat_; } while( FALSE ) 321 #define SCIP_ALLOC_ABORT_QUIET(x) do { if( NULL == (x) ) SCIPABORT(); } while( FALSE ) 322 #define SCIP_ALLOC_QUIET(x) do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE ) 324 #define SCIP_CALL_ABORT(x) do \ 326 SCIP_RETCODE _restat_; \ 327 if( (_restat_ = (x)) != SCIP_OKAY ) \ 329 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 335 #define SCIP_ALLOC_ABORT(x) do \ 339 SCIPerrorMessage("No memory in function call\n", __FILE__, __LINE__); \ 345 #define SCIP_CALL(x) do \ 347 SCIP_RETCODE _restat_; \ 348 if( (_restat_ = (x)) != SCIP_OKAY ) \ 350 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 356 #define SCIP_ALLOC(x) do \ 360 SCIPerrorMessage("No memory in function call\n"); \ 361 return SCIP_NOMEMORY; \ 366 #define SCIP_CALL_TERMINATE(retcode, x, TERM) do \ 368 if( ((retcode) = (x)) != SCIP_OKAY ) \ 370 SCIPerrorMessage("Error <%d> in function call\n", retcode); \ 376 #define SCIP_ALLOC_TERMINATE(retcode, x, TERM) do \ 380 SCIPerrorMessage("No memory in function call\n"); \ 381 retcode = SCIP_NOMEMORY; \ 387 #define SCIP_CALL_FINALLY(x, y) do \ 389 SCIP_RETCODE _restat_; \ 390 if( (_restat_ = (x)) != SCIP_OKAY ) \ 392 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 399 #define SCIP_UNUSED(x) ((void) (x)) 405 #if defined(_MSC_VER) 406 # define SCIP_DEPRECATED __declspec(deprecated) 407 #elif defined(__GNUC__) 408 # define SCIP_DEPRECATED __attribute__ ((deprecated)) 410 # define SCIP_DEPRECATED type definitions for return codes for SCIP methods
type definitions for message output methods