All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
type_presol.h File Reference Detailed Descriptiontype definitions for presolvers Definition in file type_presol.h. #include "scip/def.h" #include "scip/type_retcode.h" #include "scip/type_result.h" #include "scip/type_scip.h" Go to the source code of this file.
Macro Definition Documentation
copy method for presolver plugins (called when SCIP copies plugins) input:
Definition at line 46 of file type_presol.h.
destructor of presolver to free user data (called when SCIP is exiting) input:
Definition at line 54 of file type_presol.h.
initialization method of presolver (called after problem was transformed) input:
Definition at line 62 of file type_presol.h.
deinitialization method of presolver (called before transformed problem is freed) input:
Definition at line 70 of file type_presol.h.
presolving initialization method of presolver (called when presolving is about to begin) This method is called when the presolving process is about to begin, even if presolving is turned off. The presolver may use this call to initialize its data structures. Necessary modifications that have to be performed even if presolving is turned off should be done here or in the presolving deinitialization call (SCIP_DECL_PRESOLSEXITPRE()). input:
Definition at line 84 of file type_presol.h.
presolving deinitialization method of presolver (called after presolving has been finished) This method is called after the presolving has been finished, even if presolving is turned off. The presolver may use this call e.g. to clean up or modify its data structures. Necessary modifications that have to be performed even if presolving is turned off should be done here or in the presolving initialization call (SCIP_DECL_PRESOLINITPRE()). Besides necessary modifications and clean up, no time consuming operations should be performed, especially if the problem has already been solved. Use the method SCIPgetStatus(), which in this case returns SCIP_STATUS_OPTIMAL, SCIP_STATUS_INFEASIBLE, SCIP_STATUS_UNBOUNDED, or SCIP_STATUS_INFORUNBD. input:
Definition at line 102 of file type_presol.h.
Value:
int nnewfixedvars, int nnewaggrvars, int nnewchgvartypes, int nnewchgbds, int nnewholes, \
int nnewdelconss, int nnewaddconss, int nnewupgdconss, int nnewchgcoefs, int nnewchgsides, \
int* nfixedvars, int* naggrvars, int* nchgvartypes, int* nchgbds, int* naddholes, \
int* ndelconss, int* naddconss, int* nupgdconss, int* nchgcoefs, int* nchgsides, SCIP_RESULT* result)
execution method of presolver The presolver should go through the variables and constraints and tighten the domains or constraints. Each tightening should increase the given total numbers of changes. input:
input/output:
output:
possible return values for *result:
Definition at line 150 of file type_presol.h. Typedef Documentation
presolver data structure Definition at line 36 of file type_presol.h.
presolver specific data Definition at line 37 of file type_presol.h. |