Scippy

SCIP

Solving Constraint Integer Programs

type_reopt.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the program and library */
4 /* SCIP --- Solving Constraint Integer Programs */
5 /* */
6 /* Copyright (C) 2002-2015 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SCIP is distributed under the terms of the ZIB Academic License. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SCIP; see the file COPYING. If not email to scip@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file type_reopt.h
17  * @brief type definitions for collecting reoptimization information
18  * @author Jakob Witzig
19  */
20 
21 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
22 
23 #ifndef __SCIP_TYPE_REOPT_H__
24 #define __SCIP_TYPE_REOPT_H__
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 typedef struct SCIP_Reopt SCIP_REOPT; /**< reopt data */
31 
32 typedef struct SCIP_SolTree SCIP_SOLTREE; /**< tree to check solutions */
33 
34 typedef struct SCIP_SolNode SCIP_SOLNODE; /**< nodes of SCIP_SOLTREE */
35 
36 typedef struct SCIP_ReoptTree SCIP_REOPTTREE; /**< data structure to store the search tree */
37 
38 typedef struct SCIP_ReoptNode SCIP_REOPTNODE; /**< nodes of SCIP_REOPTTREE */
39 
40 typedef struct SCIP_ReoptNode SCIP_REPRESENTATIVE; /**< representatives of the search frontier */
41 
42 typedef struct LogicOrData LOGICORDATA; /**< data for constraints to handle dual information \
43  * within (mixed) binary programs */
44 /* type of nodes during reoptimization */
46 {
55 };
56 typedef enum SCIP_ReoptType SCIP_REOPTTYPE; /**< type nodes during reoptimization */
57 
59 {
63 };
65 
66 #ifdef __cplusplus
67 }
68 #endif
69 
70 #endif
struct SCIP_Reopt SCIP_REOPT
Definition: type_reopt.h:30
Reopt_ConsType
Definition: type_reopt.h:58
struct SCIP_ReoptNode SCIP_REOPTNODE
Definition: type_reopt.h:38
struct SCIP_SolNode SCIP_SOLNODE
Definition: type_reopt.h:34
enum SCIP_ReoptType SCIP_REOPTTYPE
Definition: type_reopt.h:56
SCIP_ReoptType
Definition: type_reopt.h:45
struct SCIP_ReoptTree SCIP_REOPTTREE
Definition: type_reopt.h:36
struct SCIP_ReoptNode SCIP_REPRESENTATIVE
Definition: type_reopt.h:40
struct SCIP_SolTree SCIP_SOLTREE
Definition: type_reopt.h:32
enum Reopt_ConsType REOPT_CONSTYPE
Definition: type_reopt.h:64
struct LogicOrData LOGICORDATA
Definition: type_reopt.h:42