24 #ifndef __SCIP_DEF_H__ 25 #define __SCIP_DEF_H__ 28 #define __STDC_LIMIT_MACROS 29 #define __STDC_CONSTANT_MACROS 42 #ifndef NO_CONFIG_HEADER 43 #include "scip/config.h" 51 #define GCC_VERSION (__GNUC__ * 100 \ 52 + __GNUC_MINOR__ * 10 \ 53 + __GNUC_PATCHLEVEL__) 60 #if defined(_MSC_VER) || ( __STDC_VERSION__ >= 199901L ) 61 #define SCIP_HAVE_VARIADIC_MACROS 1 69 #define SCIP_Bool unsigned int 76 #ifndef SCIP_Shortbool 77 #define SCIP_Shortbool uint8_t 83 #if defined(_WIN32) || defined(_WIN64) 85 #define strcasecmp _stricmp 86 #define strncasecmp _strnicmp 87 #define getcwd _getcwd 90 #define EXTERN __declspec(dllexport) 101 #if defined(_WIN32) || defined(_WIN64) || defined(__STDC__) 102 #define INLINE __inline 104 #define INLINE inline 118 #define SCIP_VERSION 601 119 #define SCIP_SUBVERSION 0 120 #define SCIP_APIVERSION 34 121 #define SCIP_COPYRIGHT "Copyright (C) 2002-2019 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)" 128 #define SCIP_VARTYPE_BINARY_CHAR 'B' 129 #define SCIP_VARTYPE_INTEGER_CHAR 'I' 130 #define SCIP_VARTYPE_IMPLINT_CHAR 'M' 131 #define SCIP_VARTYPE_CONTINUOUS_CHAR 'C' 138 #define LLONG_MAX 9223372036854775807LL 139 #define LLONG_MIN (-LLONG_MAX - 1LL) 142 #define SCIP_Longint long long 143 #define SCIP_LONGINT_MAX LLONG_MAX 144 #define SCIP_LONGINT_MIN LLONG_MIN 145 #ifndef SCIP_LONGINT_FORMAT 146 #if defined(_WIN32) || defined(_WIN64) 147 #define SCIP_LONGINT_FORMAT "I64d" 149 #define SCIP_LONGINT_FORMAT "lld" 157 #define SCIP_Real double 158 #define SCIP_REAL_MAX (SCIP_Real)DBL_MAX 159 #define SCIP_REAL_MIN -(SCIP_Real)DBL_MAX 160 #define SCIP_REAL_FORMAT "lf" 162 #define SCIP_DEFAULT_INFINITY 1e+20 163 #define SCIP_DEFAULT_EPSILON 1e-09 164 #define SCIP_DEFAULT_SUMEPSILON 1e-06 165 #define SCIP_DEFAULT_FEASTOL 1e-06 166 #define SCIP_DEFAULT_CHECKFEASTOLFAC 1.0 167 #define SCIP_DEFAULT_LPFEASTOL 1e-06 168 #define SCIP_DEFAULT_DUALFEASTOL 1e-07 169 #define SCIP_DEFAULT_BARRIERCONVTOL 1e-10 170 #define SCIP_DEFAULT_BOUNDSTREPS 0.05 171 #define SCIP_DEFAULT_PSEUDOCOSTEPS 1e-01 172 #define SCIP_DEFAULT_PSEUDOCOSTDELTA 1e-04 173 #define SCIP_DEFAULT_RECOMPFAC 1e+07 174 #define SCIP_DEFAULT_HUGEVAL 1e+15 175 #define SCIP_MAXEPSILON 1e-03 176 #define SCIP_MINEPSILON 1e-20 177 #define SCIP_INVALID (double)1e+99 178 #define SCIP_UNKNOWN (double)1e+98 181 #define REALABS(x) (fabs(x)) 182 #define EPSEQ(x,y,eps) (REALABS((x)-(y)) <= (eps)) 183 #define EPSLT(x,y,eps) ((x)-(y) < -(eps)) 184 #define EPSLE(x,y,eps) ((x)-(y) <= (eps)) 185 #define EPSGT(x,y,eps) ((x)-(y) > (eps)) 186 #define EPSGE(x,y,eps) ((x)-(y) >= -(eps)) 187 #define EPSZ(x,eps) (REALABS(x) <= (eps)) 188 #define EPSP(x,eps) ((x) > (eps)) 189 #define EPSN(x,eps) ((x) < -(eps)) 190 #define EPSFLOOR(x,eps) (floor((x)+(eps))) 191 #define EPSCEIL(x,eps) (ceil((x)-(eps))) 192 #define EPSROUND(x,eps) (ceil((x)-0.5+(eps))) 193 #define EPSFRAC(x,eps) ((x)-EPSFLOOR(x,eps)) 194 #define EPSISINT(x,eps) (EPSFRAC(x,eps) <= (eps)) 198 #define SQR(x) ((x)*(x)) 199 #define SQRT(x) (sqrt(x)) 203 #if defined(_MSC_VER) && (_MSC_VER < 1800) 204 #define LOG2(x) (log(x) / log(2.0)) 206 #define LOG2(x) log2(x) 211 #define ABS(x) ((x) >= 0 ? (x) : -(x)) 215 #define MAX(x,y) ((x) >= (y) ? (x) : (y)) 216 #define MIN(x,y) ((x) <= (y) ? (x) : (y)) 220 #define MAX3(x,y,z) ((x) >= (y) ? MAX(x,z) : MAX(y,z)) 221 #define MIN3(x,y,z) ((x) <= (y) ? MIN(x,z) : MIN(y,z)) 226 #if defined(_WIN32) || defined(_WIN64) 227 #define LOG1P(x) (log(1.0+x)) 229 #define LOG1P(x) (log1p(x)) 234 #if defined(_MSC_VER) && (_MSC_VER < 1800) 235 #define COPYSIGN _copysign 237 #define COPYSIGN copysign 246 #define NULL ((void*)0) 250 #if defined(_MSC_VER) 251 #define RESTRICT __restrict 254 #define RESTRICT __restrict__ 255 #elif __STDC_VERSION__ >= 199901L 256 #define RESTRICT restrict 267 #define SCIP_MAXSTRLEN 1024 274 #define SCIP_MAXMEMSIZE (SIZE_MAX/2) 276 #define SCIP_HASHSIZE_PARAMS 2048 277 #define SCIP_HASHSIZE_NAMES 500 278 #define SCIP_HASHSIZE_CUTPOOLS 500 279 #define SCIP_HASHSIZE_CLIQUES 500 280 #define SCIP_HASHSIZE_NAMES_SMALL 100 281 #define SCIP_HASHSIZE_CUTPOOLS_SMALL 100 282 #define SCIP_HASHSIZE_CLIQUES_SMALL 100 283 #define SCIP_HASHSIZE_VBC 500 285 #define SCIP_DEFAULT_MEM_ARRAYGROWFAC 1.2 286 #define SCIP_DEFAULT_MEM_ARRAYGROWINIT 4 288 #define SCIP_MEM_NOLIMIT (SCIP_Longint)SCIP_LONGINT_MAX/1048576.0 294 #define SCIP_MAXTREEDEPTH 65534 300 #define SCIP_PROBINGSCORE_PENALTYRATIO 2 324 #define SCIPABORT() assert(FALSE) 326 #define SCIP_CALL_ABORT_QUIET(x) do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE ) 327 #define SCIP_CALL_QUIET(x) do { SCIP_RETCODE _restat_; if( (_restat_ = (x)) != SCIP_OKAY ) return _restat_; } while( FALSE ) 328 #define SCIP_ALLOC_ABORT_QUIET(x) do { if( NULL == (x) ) SCIPABORT(); } while( FALSE ) 329 #define SCIP_ALLOC_QUIET(x) do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE ) 331 #define SCIP_CALL_ABORT(x) do \ 333 SCIP_RETCODE _restat_; \ 334 if( (_restat_ = (x)) != SCIP_OKAY ) \ 336 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 342 #define SCIP_ALLOC_ABORT(x) do \ 346 SCIPerrorMessage("No memory in function call\n", __FILE__, __LINE__); \ 352 #define SCIP_CALL(x) do \ 354 SCIP_RETCODE _restat_; \ 355 if( (_restat_ = (x)) != SCIP_OKAY ) \ 357 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 363 #define SCIP_ALLOC(x) do \ 367 SCIPerrorMessage("No memory in function call\n"); \ 368 return SCIP_NOMEMORY; \ 373 #define SCIP_CALL_TERMINATE(retcode, x, TERM) do \ 375 if( ((retcode) = (x)) != SCIP_OKAY ) \ 377 SCIPerrorMessage("Error <%d> in function call\n", retcode); \ 383 #define SCIP_ALLOC_TERMINATE(retcode, x, TERM) do \ 387 SCIPerrorMessage("No memory in function call\n"); \ 388 retcode = SCIP_NOMEMORY; \ 394 #define SCIP_CALL_FINALLY(x, y) do \ 396 SCIP_RETCODE _restat_; \ 397 if( (_restat_ = (x)) != SCIP_OKAY ) \ 399 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 406 #define SCIP_UNUSED(x) ((void) (x)) 412 #if defined(_MSC_VER) 413 # define SCIP_DEPRECATED __declspec(deprecated) 414 #elif defined(__GNUC__) 415 # define SCIP_DEPRECATED __attribute__ ((deprecated)) 417 # define SCIP_DEPRECATED type definitions for return codes for SCIP methods
type definitions for message output methods