Scippy

GCG

Branch-and-Price & Column Generation for Everyone

dialog_explore.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 dialog_explore.h
29  * @ingroup DIALOGS
30  * @brief dialog menu for exploring decompositions
31  * @author Michael Bastubbe
32  * @author Hanna Franzen
33  *
34  * This file contains all dialog calls to build and use the explore menu.
35  * The explore menu gives the user detailed information about all decompositions and a possibility to edit such.
36  */
37 
38 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
39 
40 #ifndef GCG_DIALOG_EXPLORE_H__
41 #define GCG_DIALOG_EXPLORE_H__
42 
43 #include "scip/scip.h"
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49 
50 /**
51  * @brief method to handle user input for "explore" command
52  * @returns SCIP return code
53  */
54 extern
55 SCIP_RETCODE GCGdialogExecExplore(
56  SCIP* scip, /**< SCIP data structure */
57  SCIP_DIALOGHDLR* dialoghdlr, /**< dialog handler for user input management */
58  SCIP_DIALOG* dialog /**< dialog for user input management */
59  );
60 
61 
62 #ifdef __cplusplus
63 }
64 #endif
65 
66 #endif
SCIP_RETCODE GCGdialogExecExplore(SCIP *scip, SCIP_DIALOGHDLR *dialoghdlr, SCIP_DIALOG *dialog)
method to handle user input for "explore" command