24 #ifndef __SCIP_DEF_H__ 25 #define __SCIP_DEF_H__ 28 #define __STDC_LIMIT_MACROS 43 #define GCC_VERSION (__GNUC__ * 100 \ 44 + __GNUC_MINOR__ * 10 \ 45 + __GNUC_PATCHLEVEL__) 52 #if defined(_MSC_VER) || ( __STDC_VERSION__ >= 199901L ) 53 #define SCIP_HAVE_VARIADIC_MACROS 1 61 #define SCIP_Bool unsigned int 68 #ifndef SCIP_Shortbool 69 #define SCIP_Shortbool uint8_t 75 #if defined(_WIN32) || defined(_WIN64) 77 #define strcasecmp _stricmp 78 #define strncasecmp _strnicmp 79 #define getcwd _getcwd 82 #define EXTERN __declspec(dllexport) 93 #if defined(_WIN32) || defined(_WIN64) || defined(__STDC__) 94 #define INLINE __inline 110 #define SCIP_VERSION 501 111 #define SCIP_SUBVERSION 0 112 #define SCIP_APIVERSION 21 113 #define SCIP_COPYRIGHT "Copyright (C) 2002-2018 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)" 120 #define SCIP_VARTYPE_BINARY_CHAR 'B' 121 #define SCIP_VARTYPE_INTEGER_CHAR 'I' 122 #define SCIP_VARTYPE_IMPLINT_CHAR 'M' 123 #define SCIP_VARTYPE_CONTINUOUS_CHAR 'C' 130 #define LLONG_MAX 9223372036854775807LL 131 #define LLONG_MIN (-LLONG_MAX - 1LL) 134 #define SCIP_Longint long long 135 #define SCIP_LONGINT_MAX LLONG_MAX 136 #define SCIP_LONGINT_MIN LLONG_MIN 137 #ifndef SCIP_LONGINT_FORMAT 138 #if defined(_WIN32) || defined(_WIN64) 139 #define SCIP_LONGINT_FORMAT "I64d" 141 #define SCIP_LONGINT_FORMAT "lld" 149 #define SCIP_Real double 150 #define SCIP_REAL_MAX (SCIP_Real)DBL_MAX 151 #define SCIP_REAL_MIN -(SCIP_Real)DBL_MAX 152 #define SCIP_REAL_FORMAT "lf" 154 #define SCIP_DEFAULT_INFINITY 1e+20 155 #define SCIP_DEFAULT_EPSILON 1e-09 156 #define SCIP_DEFAULT_SUMEPSILON 1e-06 157 #define SCIP_DEFAULT_FEASTOL 1e-06 158 #define SCIP_DEFAULT_CHECKFEASTOLFAC 1.0 159 #define SCIP_DEFAULT_LPFEASTOL 1e-06 160 #define SCIP_DEFAULT_DUALFEASTOL 1e-07 161 #define SCIP_DEFAULT_BARRIERCONVTOL 1e-10 162 #define SCIP_DEFAULT_BOUNDSTREPS 0.05 163 #define SCIP_DEFAULT_PSEUDOCOSTEPS 1e-01 164 #define SCIP_DEFAULT_PSEUDOCOSTDELTA 1e-04 165 #define SCIP_DEFAULT_RECOMPFAC 1e+07 166 #define SCIP_DEFAULT_HUGEVAL 1e+15 167 #define SCIP_MAXEPSILON 1e-03 168 #define SCIP_MINEPSILON 1e-20 169 #define SCIP_INVALID (double)1e+99 170 #define SCIP_UNKNOWN (double)1e+98 173 #define REALABS(x) (fabs(x)) 174 #define EPSEQ(x,y,eps) (REALABS((x)-(y)) <= (eps)) 175 #define EPSLT(x,y,eps) ((x)-(y) < -(eps)) 176 #define EPSLE(x,y,eps) ((x)-(y) <= (eps)) 177 #define EPSGT(x,y,eps) ((x)-(y) > (eps)) 178 #define EPSGE(x,y,eps) ((x)-(y) >= -(eps)) 179 #define EPSZ(x,eps) (REALABS(x) <= (eps)) 180 #define EPSP(x,eps) ((x) > (eps)) 181 #define EPSN(x,eps) ((x) < -(eps)) 182 #define EPSFLOOR(x,eps) (floor((x)+(eps))) 183 #define EPSCEIL(x,eps) (ceil((x)-(eps))) 184 #define EPSROUND(x,eps) (ceil((x)-0.5+(eps))) 185 #define EPSFRAC(x,eps) ((x)-EPSFLOOR(x,eps)) 186 #define EPSISINT(x,eps) (EPSFRAC(x,eps) <= (eps)) 190 #define SQR(x) ((x)*(x)) 191 #define SQRT(x) (sqrt(x)) 195 #if defined(_MSC_VER) && (_MSC_VER < 1800) 196 #define LOG2(x) (log(x) / log(2.0)) 198 #define LOG2(x) log2(x) 203 #define ABS(x) ((x) >= 0 ? (x) : -(x)) 207 #define MAX(x,y) ((x) >= (y) ? (x) : (y)) 208 #define MIN(x,y) ((x) <= (y) ? (x) : (y)) 212 #define MAX3(x,y,z) ((x) >= (y) ? MAX(x,z) : MAX(y,z)) 213 #define MIN3(x,y,z) ((x) <= (y) ? MIN(x,z) : MIN(y,z)) 218 #if defined(_WIN32) || defined(_WIN64) 219 #define LOG1P(x) (log(1.0+x)) 221 #define LOG1P(x) (log1p(x)) 226 #if defined(_MSC_VER) && (_MSC_VER < 1800) 227 #define COPYSIGN _copysign 229 #define COPYSIGN copysign 238 #define NULL ((void*)0) 242 #if defined(_MSC_VER) 243 #define RESTRICT __restrict 246 #define RESTRICT __restrict__ 247 #elif __STDC_VERSION__ >= 199901L 248 #define RESTRICT restrict 259 #define SCIP_MAXSTRLEN 1024 266 #define SCIP_MAXMEMSIZE (SIZE_MAX/2) 268 #define SCIP_HASHSIZE_PARAMS 2048 269 #define SCIP_HASHSIZE_NAMES 500 270 #define SCIP_HASHSIZE_CUTPOOLS 500 271 #define SCIP_HASHSIZE_CLIQUES 500 272 #define SCIP_HASHSIZE_NAMES_SMALL 100 273 #define SCIP_HASHSIZE_CUTPOOLS_SMALL 100 274 #define SCIP_HASHSIZE_CLIQUES_SMALL 100 275 #define SCIP_HASHSIZE_VBC 500 277 #define SCIP_DEFAULT_MEM_ARRAYGROWFAC 1.2 278 #define SCIP_DEFAULT_MEM_ARRAYGROWINIT 4 280 #define SCIP_MEM_NOLIMIT (SCIP_Longint)SCIP_LONGINT_MAX/1048576.0 286 #define SCIP_MAXTREEDEPTH 65534 292 #define SCIP_PROBINGSCORE_PENALTYRATIO 2 316 #define SCIPABORT() assert(FALSE) 318 #define SCIP_CALL_ABORT_QUIET(x) do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE ) 319 #define SCIP_CALL_QUIET(x) do { SCIP_RETCODE _restat_; if( (_restat_ = (x)) != SCIP_OKAY ) return _restat_; } while( FALSE ) 320 #define SCIP_ALLOC_ABORT_QUIET(x) do { if( NULL == (x) ) SCIPABORT(); } while( FALSE ) 321 #define SCIP_ALLOC_QUIET(x) do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE ) 323 #define SCIP_CALL_ABORT(x) do \ 325 SCIP_RETCODE _restat_; \ 326 if( (_restat_ = (x)) != SCIP_OKAY ) \ 328 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 334 #define SCIP_ALLOC_ABORT(x) do \ 338 SCIPerrorMessage("No memory in function call\n", __FILE__, __LINE__); \ 344 #define SCIP_CALL(x) do \ 346 SCIP_RETCODE _restat_; \ 347 if( (_restat_ = (x)) != SCIP_OKAY ) \ 349 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 355 #define SCIP_ALLOC(x) do \ 359 SCIPerrorMessage("No memory in function call\n"); \ 360 return SCIP_NOMEMORY; \ 365 #define SCIP_CALL_TERMINATE(retcode, x, TERM) do \ 367 if( ((retcode) = (x)) != SCIP_OKAY ) \ 369 SCIPerrorMessage("Error <%d> in function call\n", retcode); \ 375 #define SCIP_ALLOC_TERMINATE(retcode, x, TERM) do \ 379 SCIPerrorMessage("No memory in function call\n"); \ 380 retcode = SCIP_NOMEMORY; \ 386 #define SCIP_CALL_FINALLY(x, y) do \ 388 SCIP_RETCODE _restat_; \ 389 if( (_restat_ = (x)) != SCIP_OKAY ) \ 391 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 398 #define SCIP_UNUSED(x) ((void) (x)) 404 #if defined(_MSC_VER) 405 # define SCIP_DEPRECATED __declspec(deprecated) 406 #elif defined(__GNUC__) 407 # define SCIP_DEPRECATED __attribute__ ((deprecated)) 409 # define SCIP_DEPRECATED type definitions for return codes for SCIP methods
public methods for message output