Scippy

GCG

Branch-and-Price & Column Generation for Everyone

heur_gcgfeaspump.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the program */
4 /* GCG --- Generic Column Generation */
5 /* a Dantzig-Wolfe decomposition based extension */
6 /* of the branch-cut-and-price framework */
7 /* SCIP --- Solving Constraint Integer Programs */
8 /* */
9 /* Copyright (C) 2010-2021 Operations Research, RWTH Aachen University */
10 /* Zuse Institute Berlin (ZIB) */
11 /* */
12 /* This program is free software; you can redistribute it and/or */
13 /* modify it under the terms of the GNU Lesser General Public License */
14 /* as published by the Free Software Foundation; either version 3 */
15 /* of the License, or (at your option) any later version. */
16 /* */
17 /* This program is distributed in the hope that it will be useful, */
18 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
19 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
20 /* GNU Lesser General Public License for more details. */
21 /* */
22 /* You should have received a copy of the GNU Lesser General Public License */
23 /* along with this program; if not, write to the Free Software */
24 /* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.*/
25 /* */
26 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
27 
28 /**@file heur_gcgfeaspump.h
29  * @ingroup PRIMALHEURISTICS
30  * @brief Objective Feasibility Pump 2.0
31  * @author Timo Berthold
32  * @author Domenico Salvagnin
33  *
34  * The fundamental idea of the Feasibility Pump is to construct two sequences of points which hopefully converge to a
35  * feasible solution. One sequence consists of LP-feasiblepoints, the other one of integer feasible points. They are
36  * produced by alternately rounding an LP-feasible point and solvng an LP that finds a point on the LP polyhedron which
37  * is closest to the rounded, integral point (w.r.t. Manhattan distance).
38  *
39  * The version implemented in SCIP supports using an Objective Feasibility Pump that uses a convex combination of the
40  * Manhattan distance and the original LP objective for reoptimization. It further features Feasibility Pump 2.0
41  * capabilities, hence propagating the fixings for a faster convergence.
42  */
43 
44 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
45 
46 #ifndef __SCIP_HEUR_GCGFEASPUMP_H__
47 #define __SCIP_HEUR_GCGFEASPUMP_H__
48 
49 
50 #include "scip/scip.h"
51 
52 #ifdef __cplusplus
53 extern "C" {
54 #endif
55 
56 /** creates the feaspump primal heuristic and includes it in SCIP */
57 SCIP_EXPORT
58 SCIP_RETCODE SCIPincludeHeurGcgfeaspump(
59  SCIP* scip /**< SCIP data structure */
60  );
61 
62 #ifdef __cplusplus
63 }
64 #endif
65 
66 #endif
SCIP_EXPORT SCIP_RETCODE SCIPincludeHeurGcgfeaspump(SCIP *scip)