Scippy

SCIP

Solving Constraint Integer Programs

pub_dive.h File Reference

Detailed Description

library methods for diving heuristics

Author
Gregor Hendel

Definition in file pub_dive.h.

#include "scip/scip.h"

Go to the source code of this file.

Functions

SCIP_RETCODE SCIPperformGenericDivingAlgorithm (SCIP *scip, SCIP_DIVESET *diveset, SCIP_SOL *worksol, SCIP_HEUR *heur, SCIP_RESULT *result, SCIP_Bool nodeinfeasible)
 

Function Documentation

SCIP_RETCODE SCIPperformGenericDivingAlgorithm ( SCIP scip,
SCIP_DIVESET diveset,
SCIP_SOL worksol,
SCIP_HEUR heur,
SCIP_RESULT result,
SCIP_Bool  nodeinfeasible 
)

performs a diving within the limits of the diveset parameters

This method performs a diving according to the settings defined by the diving settings diveset; Contrary to the name, SCIP enters probing mode (not diving mode) and dives along a path into the tree. Domain propagation is applied at every node in the tree, whereas probing LPs might be solved less frequently.

Starting from the current LP solution, the algorithm selects candidates which maximize the score defined by the diveset and whose solution value has not yet been rendered infeasible by propagation, and propagates the bound change on this candidate.

The algorithm iteratively selects the the next (unfixed) candidate in the list, until either enough domain changes or the resolve frequency of the LP trigger an LP resolve (and hence, the set of potential candidates changes), or the last node is proven to be infeasible. It optionally backtracks and tries the other branching direction.

After the set of remaining candidates is empty or the targeted depth is reached, the node LP is solved, and the old candidates are replaced by the new LP candidates.

See Also
heur_guideddiving.c for an example implementation of a dive set controlling the diving algorithm.
Note
the node from where the algorithm is called is checked for a basic LP solution. If the solution is non-basic, e.g., when barrier without crossover is used, the method returns without performing a dive.
currently, when multiple diving heuristics call this method and solve an LP at the same node, only the first call will be executed,
See Also
SCIPgetLastDiveNode().
Parameters
scipSCIP data structure
divesetsettings for diving
worksolnon-NULL working solution
heurthe calling primal heuristic
resultSCIP result pointer
nodeinfeasibleis the current node known to be infeasible?