objsepa.cpp
Go to the documentation of this file.
21 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/ 38 SCIP_Bool deleteobject; /**< should the cut separator object be deleted when cut separator is freed? */ 136 /** solving process initialization method of separator (called when branch and bound process is about to begin) */ 153 /** solving process deinitialization method of separator (called before branch and bound process data is freed) */ 214 SCIP_Bool deleteobject /**< should the cut separator object be deleted when cut separator is freed? */ 228 SCIP_CALL( SCIPincludeSepa(scip, objsepa->scip_name_, objsepa->scip_desc_, objsepa->scip_priority_, 229 objsepa->scip_freq_, objsepa->scip_maxbounddist_, objsepa->scip_usessubscip_, objsepa->scip_delay_,
Definition: struct_scip.h:53 Definition: struct_sepa.h:36 scip::ObjSepa * SCIPgetObjSepa(SCIP *scip, SCIP_SEPA *sepa) Definition: objsepa.cpp:257 Definition: type_retcode.h:33 SCIP_RETCODE SCIPincludeSepa(SCIP *scip, const char *name, const char *desc, int priority, int freq, SCIP_Real maxbounddist, SCIP_Bool usessubscip, SCIP_Bool delay, SCIP_DECL_SEPACOPY((*sepacopy)), SCIP_DECL_SEPAFREE((*sepafree)), SCIP_DECL_SEPAINIT((*sepainit)), SCIP_DECL_SEPAEXIT((*sepaexit)), SCIP_DECL_SEPAINITSOL((*sepainitsol)), SCIP_DECL_SEPAEXITSOL((*sepaexitsol)), SCIP_DECL_SEPAEXECLP((*sepaexeclp)), SCIP_DECL_SEPAEXECSOL((*sepaexecsol)), SCIP_SEPADATA *sepadata) Definition: scip.c:6612 SCIP_RETCODE SCIPincludeObjSepa(SCIP *scip, scip::ObjSepa *objsepa, SCIP_Bool deleteobject) Definition: objsepa.cpp:211 scip::ObjSepa * SCIPfindObjSepa(SCIP *scip, const char *name) Definition: objsepa.cpp:238 C++ wrapper for cut separators. Definition: objbranchrule.h:33 |