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 71 #if defined(_WIN32) || defined(_WIN64) 73 #define strcasecmp _stricmp 74 #define strncasecmp _strnicmp 75 #define getcwd _getcwd 78 #define EXTERN __declspec(dllexport) 97 #define SCIP_VERSION 400 98 #define SCIP_SUBVERSION 0 99 #define SCIP_COPYRIGHT "Copyright (C) 2002-2017 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)" 106 #define SCIP_VARTYPE_BINARY_CHAR 'B' 107 #define SCIP_VARTYPE_INTEGER_CHAR 'I' 108 #define SCIP_VARTYPE_IMPLINT_CHAR 'M' 109 #define SCIP_VARTYPE_CONTINUOUS_CHAR 'C' 116 #define LLONG_MAX 9223372036854775807LL 117 #define LLONG_MIN (-LLONG_MAX - 1LL) 120 #define SCIP_Longint long long 121 #define SCIP_LONGINT_MAX LLONG_MAX 122 #define SCIP_LONGINT_MIN LLONG_MIN 123 #ifndef SCIP_LONGINT_FORMAT 124 #if defined(_WIN32) || defined(_WIN64) 125 #define SCIP_LONGINT_FORMAT "I64d" 127 #define SCIP_LONGINT_FORMAT "lld" 135 #define SCIP_Real double 136 #define SCIP_REAL_MAX (SCIP_Real)DBL_MAX 137 #define SCIP_REAL_MIN -(SCIP_Real)DBL_MAX 138 #define SCIP_REAL_FORMAT "lf" 140 #define SCIP_DEFAULT_INFINITY 1e+20 141 #define SCIP_DEFAULT_EPSILON 1e-09 142 #define SCIP_DEFAULT_SUMEPSILON 1e-06 143 #define SCIP_DEFAULT_FEASTOL 1e-06 144 #define SCIP_DEFAULT_CHECKFEASTOLFAC 1.0 145 #define SCIP_DEFAULT_LPFEASTOL 1e-06 146 #define SCIP_DEFAULT_DUALFEASTOL 1e-07 147 #define SCIP_DEFAULT_BARRIERCONVTOL 1e-10 148 #define SCIP_DEFAULT_BOUNDSTREPS 0.05 149 #define SCIP_DEFAULT_PSEUDOCOSTEPS 1e-01 150 #define SCIP_DEFAULT_PSEUDOCOSTDELTA 1e-04 151 #define SCIP_DEFAULT_RECOMPFAC 1e+07 152 #define SCIP_DEFAULT_HUGEVAL 1e+15 153 #define SCIP_MAXEPSILON 1e-03 154 #define SCIP_MINEPSILON 1e-20 155 #define SCIP_INVALID 1e+99 156 #define SCIP_UNKNOWN 1e+98 159 #define REALABS(x) (fabs(x)) 160 #define EPSEQ(x,y,eps) (REALABS((x)-(y)) <= (eps)) 161 #define EPSLT(x,y,eps) ((x)-(y) < -(eps)) 162 #define EPSLE(x,y,eps) ((x)-(y) <= (eps)) 163 #define EPSGT(x,y,eps) ((x)-(y) > (eps)) 164 #define EPSGE(x,y,eps) ((x)-(y) >= -(eps)) 165 #define EPSZ(x,eps) (REALABS(x) <= (eps)) 166 #define EPSP(x,eps) ((x) > (eps)) 167 #define EPSN(x,eps) ((x) < -(eps)) 168 #define EPSFLOOR(x,eps) (floor((x)+(eps))) 169 #define EPSCEIL(x,eps) (ceil((x)-(eps))) 170 #define EPSROUND(x,eps) (ceil((x)-0.5+(eps))) 171 #define EPSFRAC(x,eps) ((x)-EPSFLOOR(x,eps)) 172 #define EPSISINT(x,eps) (EPSFRAC(x,eps) <= (eps)) 176 #define SQR(x) ((x)*(x)) 177 #define SQRT(x) (sqrt(x)) 181 #define ABS(x) ((x) >= 0 ? (x) : -(x)) 185 #define MAX(x,y) ((x) >= (y) ? (x) : (y)) 186 #define MIN(x,y) ((x) <= (y) ? (x) : (y)) 190 #define MAX3(x,y,z) ((x) >= (y) ? MAX(x,z) : MAX(y,z)) 191 #define MIN3(x,y,z) ((x) <= (y) ? MIN(x,z) : MIN(y,z)) 195 #if defined(_MSC_VER) && (_MSC_VER < 1800) 196 #define COPYSIGN _copysign 198 #define COPYSIGN copysign 207 #define NULL ((void*)0) 215 #define SCIP_MAXSTRLEN 1024 222 #define SCIP_MAXMEMSIZE (SIZE_MAX/2) 224 #define SCIP_HASHSIZE_PARAMS 2048 225 #define SCIP_HASHSIZE_NAMES 500 226 #define SCIP_HASHSIZE_CUTPOOLS 500 227 #define SCIP_HASHSIZE_CLIQUES 500 228 #define SCIP_HASHSIZE_NAMES_SMALL 100 229 #define SCIP_HASHSIZE_CUTPOOLS_SMALL 100 230 #define SCIP_HASHSIZE_CLIQUES_SMALL 100 231 #define SCIP_HASHSIZE_VBC 500 233 #define SCIP_DEFAULT_MEM_ARRAYGROWFAC 1.2 234 #define SCIP_DEFAULT_MEM_ARRAYGROWINIT 4 236 #define SCIP_MEM_NOLIMIT (SCIP_Longint)SCIP_LONGINT_MAX/1048576.0 242 #define SCIP_MAXTREEDEPTH 65534 248 #define SCIP_PROBINGSCORE_PENALTYRATIO 2 272 #define SCIPABORT() assert(FALSE) 274 #define SCIP_CALL_ABORT_QUIET(x) do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE ) 275 #define SCIP_CALL_QUIET(x) do { SCIP_RETCODE _restat_; if( (_restat_ = (x)) != SCIP_OKAY ) return _restat_; } while( FALSE ) 276 #define SCIP_ALLOC_ABORT_QUIET(x) do { if( NULL == (x) ) SCIPABORT(); } while( FALSE ) 277 #define SCIP_ALLOC_QUIET(x) do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE ) 279 #define SCIP_CALL_ABORT(x) do \ 281 SCIP_RETCODE _restat_; \ 282 if( (_restat_ = (x)) != SCIP_OKAY ) \ 284 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 290 #define SCIP_ALLOC_ABORT(x) do \ 294 SCIPerrorMessage("No memory in function call\n", __FILE__, __LINE__); \ 300 #define SCIP_CALL(x) do \ 302 SCIP_RETCODE _restat_; \ 303 if( (_restat_ = (x)) != SCIP_OKAY ) \ 305 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 311 #define SCIP_ALLOC(x) do \ 315 SCIPerrorMessage("No memory in function call\n"); \ 316 return SCIP_NOMEMORY; \ 321 #define SCIP_CALL_TERMINATE(retcode, x, TERM) do \ 323 if( ((retcode) = (x)) != SCIP_OKAY ) \ 325 SCIPerrorMessage("Error <%d> in function call\n", retcode); \ 331 #define SCIP_ALLOC_TERMINATE(retcode, x, TERM) do \ 335 SCIPerrorMessage("No memory in function call\n"); \ 336 retcode = SCIP_NOMEMORY; \ 342 #define SCIP_CALL_FINALLY(x, y) do \ 344 SCIP_RETCODE _restat_; \ 345 if( (_restat_ = (x)) != SCIP_OKAY ) \ 347 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 354 #define SCIP_UNUSED(x) ((void) (x)) 360 #if defined(_MSC_VER) 361 # define SCIP_DEPRECATED __declspec(deprecated) 362 #elif defined(__GNUC__) 363 # define SCIP_DEPRECATED __attribute__ ((deprecated)) 365 # define SCIP_DEPRECATED type definitions for return codes for SCIP methods
public methods for message output