Scippy

    SCIP

    Solving Constraint Integer Programs

    tclique_def.h File Reference

    Detailed Description

    tclique defines

    Author
    Tobias Achterberg

    Definition in file tclique_def.h.

    #include "scip/config.h"
    #include "scip/scip_export.h"

    Go to the source code of this file.

    Macros

    #define ALLOC_ABORT(x)
     
    #define ALLOC_FALSE(x)
     
    #define debug(x)
     
    #define debugMessage   while( FALSE ) printf
     
    #define debugPrintf   while( FALSE ) printf
     
    #define infoMessage   printf
     
    #define MAX(x, y)   ((x) >= (y) ? (x) : (y))
     

    Macro Definition Documentation

    ◆ ALLOC_ABORT

    #define ALLOC_ABORT (   x)
    Value:
    do \
    { \
    if( NULL == (x) ) \
    { \
    printf("[%s:%d] No memory in function call\n", __FILE__, __LINE__); \
    abort(); \
    } \
    } \
    while( FALSE )
    SCIP_VAR ** x
    Definition: circlepacking.c:63
    #define NULL
    Definition: def.h:248
    #define FALSE
    Definition: def.h:94

    Definition at line 50 of file tclique_def.h.

    ◆ ALLOC_FALSE

    #define ALLOC_FALSE (   x)
    Value:
    do \
    { \
    if( NULL == (x) ) \
    { \
    printf("[%s:%d] No memory in function call\n", __FILE__, __LINE__); \
    return FALSE; \
    } \
    } \
    while( FALSE )

    Definition at line 62 of file tclique_def.h.

    ◆ debug

    #define debug (   x)

    Definition at line 79 of file tclique_def.h.

    ◆ debugMessage

    #define debugMessage   while( FALSE ) printf

    Definition at line 80 of file tclique_def.h.

    ◆ debugPrintf

    #define debugPrintf   while( FALSE ) printf

    Definition at line 81 of file tclique_def.h.

    ◆ infoMessage

    #define infoMessage   printf

    Definition at line 86 of file tclique_def.h.

    ◆ MAX

    #define MAX (   x,
      y 
    )    ((x) >= (y) ? (x) : (y))

    Definition at line 90 of file tclique_def.h.