A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://scip.zib.de/doc/html/scip__presol_8c_source.php below:

SCIP Doxygen Documentation: scip_presol.c Source File

85 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPincludePresol"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

95

maxrounds, timing, presolcopy,

96

presolfree, presolinit, presolexit, presolinitpre, presolexitpre, presolexec, presoldata) );

127 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPincludePresolBasic"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

141 if

( presolptr !=

NULL

)

154 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPsetPresolCopy"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

156

assert(presol !=

NULL

);

170 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPsetPresolFree"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

172

assert(presol !=

NULL

);

186 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPsetPresolInit"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

188

assert(presol !=

NULL

);

202 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPsetPresolExit"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

204

assert(presol !=

NULL

);

218 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPsetPresolInitpre"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

220

assert(presol !=

NULL

);

234 SCIP_CALL

(

SCIPcheckStage

(

scip

,

"SCIPsetPresolExitpre"

,

TRUE

,

TRUE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

,

FALSE

) );

236

assert(presol !=

NULL

);

251

assert(name !=

NULL

);

266 return scip

->set->presols;

277 return scip

->set->npresols;

303 return scip

->stat->npresolrounds;

SCIP_RETCODE SCIPcheckStage(SCIP *scip, const char *method, SCIP_Bool init, SCIP_Bool problem, SCIP_Bool transforming, SCIP_Bool transformed, SCIP_Bool initpresolve, SCIP_Bool presolving, SCIP_Bool exitpresolve, SCIP_Bool presolved, SCIP_Bool initsolve, SCIP_Bool solving, SCIP_Bool solved, SCIP_Bool exitsolve, SCIP_Bool freetrans, SCIP_Bool freescip)

SCIP_RETCODE SCIPincludePresol(SCIP *scip, const char *name, const char *desc, int priority, int maxrounds, SCIP_PRESOLTIMING timing, SCIP_DECL_PRESOLCOPY((*presolcopy)), SCIP_DECL_PRESOLFREE((*presolfree)), SCIP_DECL_PRESOLINIT((*presolinit)), SCIP_DECL_PRESOLEXIT((*presolexit)), SCIP_DECL_PRESOLINITPRE((*presolinitpre)), SCIP_DECL_PRESOLEXITPRE((*presolexitpre)), SCIP_DECL_PRESOLEXEC((*presolexec)), SCIP_PRESOLDATA *presoldata)

SCIP_RETCODE SCIPsetPresolExitpre(SCIP *scip, SCIP_PRESOL *presol, SCIP_DECL_PRESOLEXITPRE((*presolexitpre)))

SCIP_RETCODE SCIPsetPresolInit(SCIP *scip, SCIP_PRESOL *presol, SCIP_DECL_PRESOLINIT((*presolinit)))

SCIP_PRESOL ** SCIPgetPresols(SCIP *scip)

SCIP_RETCODE SCIPsetPresolFree(SCIP *scip, SCIP_PRESOL *presol, SCIP_DECL_PRESOLFREE((*presolfree)))

SCIP_RETCODE SCIPsetPresolPriority(SCIP *scip, SCIP_PRESOL *presol, int priority)

SCIP_RETCODE SCIPsetPresolExit(SCIP *scip, SCIP_PRESOL *presol, SCIP_DECL_PRESOLEXIT((*presolexit)))

SCIP_PRESOL * SCIPfindPresol(SCIP *scip, const char *name)

int SCIPgetNPresols(SCIP *scip)

SCIP_RETCODE SCIPsetPresolCopy(SCIP *scip, SCIP_PRESOL *presol, SCIP_DECL_PRESOLCOPY((*presolcopy)))

SCIP_RETCODE SCIPincludePresolBasic(SCIP *scip, SCIP_PRESOL **presolptr, const char *name, const char *desc, int priority, int maxrounds, SCIP_PRESOLTIMING timing, SCIP_DECL_PRESOLEXEC((*presolexec)), SCIP_PRESOLDATA *presoldata)

SCIP_RETCODE SCIPsetPresolInitpre(SCIP *scip, SCIP_PRESOL *presol, SCIP_DECL_PRESOLINITPRE((*presolinitpre)))

int SCIPgetNPresolRounds(SCIP *scip)

void SCIPpresolSetExitpre(SCIP_PRESOL *presol, SCIP_DECL_PRESOLEXITPRE((*presolexitpre)))

void SCIPpresolSetPriority(SCIP_PRESOL *presol, SCIP_SET *set, int priority)

void SCIPpresolSetExit(SCIP_PRESOL *presol, SCIP_DECL_PRESOLEXIT((*presolexit)))

void SCIPpresolSetInitpre(SCIP_PRESOL *presol, SCIP_DECL_PRESOLINITPRE((*presolinitpre)))

SCIP_RETCODE SCIPpresolCreate(SCIP_PRESOL **presol, SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, int priority, int maxrounds, SCIP_PRESOLTIMING timing, SCIP_DECL_PRESOLCOPY((*presolcopy)), SCIP_DECL_PRESOLFREE((*presolfree)), SCIP_DECL_PRESOLINIT((*presolinit)), SCIP_DECL_PRESOLEXIT((*presolexit)), SCIP_DECL_PRESOLINITPRE((*presolinitpre)), SCIP_DECL_PRESOLEXITPRE((*presolexitpre)), SCIP_DECL_PRESOLEXEC((*presolexec)), SCIP_PRESOLDATA *presoldata)

void SCIPpresolSetCopy(SCIP_PRESOL *presol, SCIP_DECL_PRESOLCOPY((*presolcopy)))

void SCIPpresolSetFree(SCIP_PRESOL *presol, SCIP_DECL_PRESOLFREE((*presolfree)))

void SCIPpresolSetInit(SCIP_PRESOL *presol, SCIP_DECL_PRESOLINIT((*presolinit)))

internal methods for presolvers

public methods for message output

public methods for presolving plugins

void SCIPsetSortPresols(SCIP_SET *set)

SCIP_RETCODE SCIPsetIncludePresol(SCIP_SET *set, SCIP_PRESOL *presol)

SCIP_PRESOL * SCIPsetFindPresol(SCIP_SET *set, const char *name)

internal methods for global SCIP settings

datastructures for block memory pools and memory buffers

SCIP main data structure.

datastructures for global SCIP settings

datastructures for problem statistics

#define SCIP_DECL_PRESOLCOPY(x)

struct SCIP_PresolData SCIP_PRESOLDATA

#define SCIP_DECL_PRESOLFREE(x)

#define SCIP_DECL_PRESOLINITPRE(x)

#define SCIP_DECL_PRESOLEXITPRE(x)

#define SCIP_DECL_PRESOLINIT(x)

#define SCIP_DECL_PRESOLEXIT(x)

#define SCIP_DECL_PRESOLEXEC(x)

enum SCIP_Retcode SCIP_RETCODE

unsigned int SCIP_PRESOLTIMING


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4