Toggle navigation
SCIP Optimization Suite
SCIP
SoPlex
ZIMPL
UG
GCG
Documentation
SCIP 9.2.0
SCIP 8.1.0
SCIP 7.0.3
SCIP 6.0.2
SCIP 5.0.1
SCIP 4.0.1
SCIP 3.2.1
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-2018 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
SCIP_ReoptConsData
SCIP_REOPTCONSDATA
;
/**< data for constraints to handle dual information \
43
* within (mixed) binary programs
44
*/
45
46
/* type of nodes during reoptimization */
47
enum
SCIP_ReoptType
48
{
49
SCIP_REOPTTYPE_NONE
= 0,
/**< node is not part of the reoptimizationtree */
50
SCIP_REOPTTYPE_TRANSIT
= 1,
/**< node is only needed for reconstructing the tree */
51
SCIP_REOPTTYPE_INFSUBTREE
= 2,
/**< node contains dual reductions which leed to LP infeasibility */
52
SCIP_REOPTTYPE_STRBRANCHED
= 3,
/**< node contains dual reductions */
53
SCIP_REOPTTYPE_LOGICORNODE
= 4,
/**< node contains additional constraints */
54
SCIP_REOPTTYPE_LEAF
= 5,
/**< node is a leaf node */
55
SCIP_REOPTTYPE_PRUNED
= 6,
/**< node is a leaf node and pruned by boudning */
56
SCIP_REOPTTYPE_FEASIBLE
= 7
/**< node is a leaf node and has an integral optimal LP solution */
57
};
58
typedef
enum
SCIP_ReoptType
SCIP_REOPTTYPE
;
/**< type nodes during reoptimization */
59
60
enum
Reopt_ConsType
61
{
62
REOPT_CONSTYPE_INFSUBTREE
= 0,
/**< constraint cutoffs an LP infeasible subtree */
63
REOPT_CONSTYPE_DUALREDS
= 1,
/**< constraint reconstructs dual reductions */
64
REOPT_CONSTYPE_CUT
= 2,
/**< constraint representing a cut, e.g., to separate a solution */
65
REOPT_CONSTYPE_UNKNOWN
= 3
/**< constraint was added by SCIP, e.g., a (local) conflict */
66
};
67
typedef
enum
Reopt_ConsType
REOPT_CONSTYPE
;
/**< tye of constraunts added during reoptimization */
68
69
#ifdef __cplusplus
70
}
71
#endif
72
73
#endif
SCIP_REOPTTYPE_FEASIBLE
Definition:
type_reopt.h:56
SCIP_REOPTCONSDATA
struct SCIP_ReoptConsData SCIP_REOPTCONSDATA
Definition:
type_reopt.h:42
REOPT_CONSTYPE_DUALREDS
Definition:
type_reopt.h:63
SCIP_REOPTTYPE_PRUNED
Definition:
type_reopt.h:55
SCIP_REOPTTYPE_LEAF
Definition:
type_reopt.h:54
SCIP_REOPTTYPE_TRANSIT
Definition:
type_reopt.h:50
SCIP_ReoptNode
Definition:
struct_reopt.h:79
Reopt_ConsType
Reopt_ConsType
Definition:
type_reopt.h:60
SCIP_SolTree
Definition:
struct_reopt.h:54
SCIP_REOPTTYPE_STRBRANCHED
Definition:
type_reopt.h:52
SCIP_REOPTTYPE_LOGICORNODE
Definition:
type_reopt.h:53
SCIP_REOPTTYPE
enum SCIP_ReoptType SCIP_REOPTTYPE
Definition:
type_reopt.h:58
SCIP_ReoptType
SCIP_ReoptType
Definition:
type_reopt.h:47
SCIP_SolNode
Definition:
struct_reopt.h:37
SCIP_Reopt
Definition:
struct_reopt.h:126
SCIP_ReoptTree
Definition:
struct_reopt.h:107
REOPT_CONSTYPE_CUT
Definition:
type_reopt.h:64
SCIP_REOPTTYPE_NONE
Definition:
type_reopt.h:49
SCIP_REOPTTYPE_INFSUBTREE
Definition:
type_reopt.h:51
REOPT_CONSTYPE
enum Reopt_ConsType REOPT_CONSTYPE
Definition:
type_reopt.h:67
REOPT_CONSTYPE_UNKNOWN
Definition:
type_reopt.h:65
REOPT_CONSTYPE_INFSUBTREE
Definition:
type_reopt.h:62