All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
type_heur.h File Reference Detailed Descriptiontype definitions for primal heuristics This file defines the interface for primal heuristics implemented in C.
Definition in file type_heur.h. #include "scip/def.h" #include "scip/type_scip.h" #include "scip/type_result.h" #include "scip/type_timing.h" Go to the source code of this file.
Macro Definition Documentation
copy method for heuristic plugins (called when SCIP copies plugins) input:
Definition at line 53 of file type_heur.h.
destructor of primal heuristic to free user data (called when SCIP is exiting) input:
Definition at line 61 of file type_heur.h.
initialization method of primal heuristic (called after problem was transformed) input:
Definition at line 69 of file type_heur.h.
deinitialization method of primal heuristic (called before transformed problem is freed) input:
Definition at line 77 of file type_heur.h.
solving process initialization method of primal heuristic (called when branch and bound process is about to begin) This method is called when the presolving was finished and the branch and bound process is about to begin. The primal heuristic may use this call to initialize its branch and bound specific data. input:
Definition at line 88 of file type_heur.h.
solving process deinitialization method of primal heuristic (called before branch and bound process data is freed) This method is called before the branch and bound process is freed. The primal heuristic should use this call to clean up its branch and bound data. input:
Definition at line 99 of file type_heur.h.
Value:
SCIP_Bool nodeinfeasible, SCIP_RESULT* result)
execution method of primal heuristic Searches for feasible primal solutions. The method is called in the node processing loop. input:
possible return values for *result:
Definition at line 119 of file type_heur.h. Typedef Documentationprimal heuristic Definition at line 43 of file type_heur.h.
locally defined primal heuristic data Definition at line 44 of file type_heur.h. |