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) 89 #if defined(_WIN32) || defined(_WIN64) || defined(__STDC__) 90 #define INLINE __inline 106 #define SCIP_VERSION 401 107 #define SCIP_SUBVERSION 0 108 #define SCIP_APIVERSION 0 109 #define SCIP_COPYRIGHT "Copyright (C) 2002-2017 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)" 116 #define SCIP_VARTYPE_BINARY_CHAR 'B' 117 #define SCIP_VARTYPE_INTEGER_CHAR 'I' 118 #define SCIP_VARTYPE_IMPLINT_CHAR 'M' 119 #define SCIP_VARTYPE_CONTINUOUS_CHAR 'C' 126 #define LLONG_MAX 9223372036854775807LL 127 #define LLONG_MIN (-LLONG_MAX - 1LL) 130 #define SCIP_Longint long long 131 #define SCIP_LONGINT_MAX LLONG_MAX 132 #define SCIP_LONGINT_MIN LLONG_MIN 133 #ifndef SCIP_LONGINT_FORMAT 134 #if defined(_WIN32) || defined(_WIN64) 135 #define SCIP_LONGINT_FORMAT "I64d" 137 #define SCIP_LONGINT_FORMAT "lld" 145 #define SCIP_Real double 146 #define SCIP_REAL_MAX (SCIP_Real)DBL_MAX 147 #define SCIP_REAL_MIN -(SCIP_Real)DBL_MAX 148 #define SCIP_REAL_FORMAT "lf" 150 #define SCIP_DEFAULT_INFINITY 1e+20 151 #define SCIP_DEFAULT_EPSILON 1e-09 152 #define SCIP_DEFAULT_SUMEPSILON 1e-06 153 #define SCIP_DEFAULT_FEASTOL 1e-06 154 #define SCIP_DEFAULT_CHECKFEASTOLFAC 1.0 155 #define SCIP_DEFAULT_LPFEASTOL 1e-06 156 #define SCIP_DEFAULT_DUALFEASTOL 1e-07 157 #define SCIP_DEFAULT_BARRIERCONVTOL 1e-10 158 #define SCIP_DEFAULT_BOUNDSTREPS 0.05 159 #define SCIP_DEFAULT_PSEUDOCOSTEPS 1e-01 160 #define SCIP_DEFAULT_PSEUDOCOSTDELTA 1e-04 161 #define SCIP_DEFAULT_RECOMPFAC 1e+07 162 #define SCIP_DEFAULT_HUGEVAL 1e+15 163 #define SCIP_MAXEPSILON 1e-03 164 #define SCIP_MINEPSILON 1e-20 165 #define SCIP_INVALID (double)1e+99 166 #define SCIP_UNKNOWN (double)1e+98 169 #define REALABS(x) (fabs(x)) 170 #define EPSEQ(x,y,eps) (REALABS((x)-(y)) <= (eps)) 171 #define EPSLT(x,y,eps) ((x)-(y) < -(eps)) 172 #define EPSLE(x,y,eps) ((x)-(y) <= (eps)) 173 #define EPSGT(x,y,eps) ((x)-(y) > (eps)) 174 #define EPSGE(x,y,eps) ((x)-(y) >= -(eps)) 175 #define EPSZ(x,eps) (REALABS(x) <= (eps)) 176 #define EPSP(x,eps) ((x) > (eps)) 177 #define EPSN(x,eps) ((x) < -(eps)) 178 #define EPSFLOOR(x,eps) (floor((x)+(eps))) 179 #define EPSCEIL(x,eps) (ceil((x)-(eps))) 180 #define EPSROUND(x,eps) (ceil((x)-0.5+(eps))) 181 #define EPSFRAC(x,eps) ((x)-EPSFLOOR(x,eps)) 182 #define EPSISINT(x,eps) (EPSFRAC(x,eps) <= (eps)) 186 #define SQR(x) ((x)*(x)) 187 #define SQRT(x) (sqrt(x)) 191 #define ABS(x) ((x) >= 0 ? (x) : -(x)) 195 #define MAX(x,y) ((x) >= (y) ? (x) : (y)) 196 #define MIN(x,y) ((x) <= (y) ? (x) : (y)) 200 #define MAX3(x,y,z) ((x) >= (y) ? MAX(x,z) : MAX(y,z)) 201 #define MIN3(x,y,z) ((x) <= (y) ? MIN(x,z) : MIN(y,z)) 205 #if defined(_MSC_VER) && (_MSC_VER < 1800) 206 #define COPYSIGN _copysign 208 #define COPYSIGN copysign 217 #define NULL ((void*)0) 225 #define SCIP_MAXSTRLEN 1024 232 #define SCIP_MAXMEMSIZE (SIZE_MAX/2) 234 #define SCIP_HASHSIZE_PARAMS 2048 235 #define SCIP_HASHSIZE_NAMES 500 236 #define SCIP_HASHSIZE_CUTPOOLS 500 237 #define SCIP_HASHSIZE_CLIQUES 500 238 #define SCIP_HASHSIZE_NAMES_SMALL 100 239 #define SCIP_HASHSIZE_CUTPOOLS_SMALL 100 240 #define SCIP_HASHSIZE_CLIQUES_SMALL 100 241 #define SCIP_HASHSIZE_VBC 500 243 #define SCIP_DEFAULT_MEM_ARRAYGROWFAC 1.2 244 #define SCIP_DEFAULT_MEM_ARRAYGROWINIT 4 246 #define SCIP_MEM_NOLIMIT (SCIP_Longint)SCIP_LONGINT_MAX/1048576.0 252 #define SCIP_MAXTREEDEPTH 65534 258 #define SCIP_PROBINGSCORE_PENALTYRATIO 2 282 #define SCIPABORT() assert(FALSE) 284 #define SCIP_CALL_ABORT_QUIET(x) do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE ) 285 #define SCIP_CALL_QUIET(x) do { SCIP_RETCODE _restat_; if( (_restat_ = (x)) != SCIP_OKAY ) return _restat_; } while( FALSE ) 286 #define SCIP_ALLOC_ABORT_QUIET(x) do { if( NULL == (x) ) SCIPABORT(); } while( FALSE ) 287 #define SCIP_ALLOC_QUIET(x) do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE ) 289 #define SCIP_CALL_ABORT(x) do \ 291 SCIP_RETCODE _restat_; \ 292 if( (_restat_ = (x)) != SCIP_OKAY ) \ 294 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 300 #define SCIP_ALLOC_ABORT(x) do \ 304 SCIPerrorMessage("No memory in function call\n", __FILE__, __LINE__); \ 310 #define SCIP_CALL(x) do \ 312 SCIP_RETCODE _restat_; \ 313 if( (_restat_ = (x)) != SCIP_OKAY ) \ 315 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 321 #define SCIP_ALLOC(x) do \ 325 SCIPerrorMessage("No memory in function call\n"); \ 326 return SCIP_NOMEMORY; \ 331 #define SCIP_CALL_TERMINATE(retcode, x, TERM) do \ 333 if( ((retcode) = (x)) != SCIP_OKAY ) \ 335 SCIPerrorMessage("Error <%d> in function call\n", retcode); \ 341 #define SCIP_ALLOC_TERMINATE(retcode, x, TERM) do \ 345 SCIPerrorMessage("No memory in function call\n"); \ 346 retcode = SCIP_NOMEMORY; \ 352 #define SCIP_CALL_FINALLY(x, y) do \ 354 SCIP_RETCODE _restat_; \ 355 if( (_restat_ = (x)) != SCIP_OKAY ) \ 357 SCIPerrorMessage("Error <%d> in function call\n", _restat_); \ 364 #define SCIP_UNUSED(x) ((void) (x)) 370 #if defined(_MSC_VER) 371 # define SCIP_DEPRECATED __declspec(deprecated) 372 #elif defined(__GNUC__) 373 # define SCIP_DEPRECATED __attribute__ ((deprecated)) 375 # define SCIP_DEPRECATED type definitions for return codes for SCIP methods
public methods for message output