Scippy

GCG

Branch-and-Price & Column Generation for Everyone

graph_tclique.cpp File Reference

Detailed Description

interface to the SCIP tclique graph library

Author
Annika Thome
Martin Bergner

Definition in file graph_tclique.cpp.

#include <cassert>
#include "graph_tclique.h"

Go to the source code of this file.

Namespaces

 gcg
 

Macros

#define TCLIQUE_CALL_EXC(x)
 
#define TCLIQUE_CALL(x)
 

Macro Definition Documentation

◆ TCLIQUE_CALL_EXC

#define TCLIQUE_CALL_EXC (   x)
Value:
do \
{ \
SCIP_Bool _restat_; \
if( (_restat_ = (x)) != TRUE ) \
{ \
SCIPerrorMessage("Error <%d> in function call\n", _restat_); \
throw std::exception(); \
} \
} \
while( FALSE )

Definition at line 39 of file graph_tclique.cpp.

◆ TCLIQUE_CALL

#define TCLIQUE_CALL (   x)
Value:
do \
{ \
SCIP_Bool _restat_; \
if( (_restat_ = (x)) != TRUE ) \
{ \
SCIPerrorMessage("Error <%d> in function call\n", _restat_); \
return SCIP_ERROR; \
} \
} \
while( FALSE )

Definition at line 50 of file graph_tclique.cpp.