Scippy

SCIP

Solving Constraint Integer Programs

struct_scip.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-2019 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 visit scip.zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file struct_scip.h
17  * @ingroup INTERNALAPI
18  * @brief SCIP main data structure
19  * @author Tobias Achterberg
20  */
21 
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
23 
24 #ifndef __SCIP_STRUCT_SCIP_H__
25 #define __SCIP_STRUCT_SCIP_H__
26 
27 
28 #include "scip/def.h"
29 #include "scip/type_set.h"
30 #include "scip/type_stat.h"
31 #include "scip/type_clock.h"
32 #include "scip/type_interrupt.h"
33 #include "scip/type_mem.h"
34 #include "scip/type_event.h"
35 #include "scip/type_lp.h"
36 #include "scip/type_nlp.h"
37 #include "scip/type_implics.h"
38 #include "scip/type_prob.h"
39 #include "scip/type_primal.h"
40 #include "scip/type_relax.h"
41 #include "scip/type_tree.h"
42 #include "scip/type_pricestore.h"
43 #include "scip/type_sepastore.h"
45 #include "scip/type_cutpool.h"
46 #include "scip/type_branch.h"
47 #include "scip/type_conflict.h"
48 #include "scip/type_dialog.h"
49 #include "scip/type_reopt.h"
50 #include "scip/type_concurrent.h"
51 #include "scip/type_syncstore.h"
52 
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56 
57 /** SCIP main data structure */
58 struct Scip
59 {
60  /* INIT */
61  SCIP_MEM* mem; /**< block memory buffers */
62  SCIP_SET* set; /**< global SCIP settings */
63  SCIP_INTERRUPT* interrupt; /**< CTRL-C interrupt data */
64  SCIP_DIALOGHDLR* dialoghdlr; /**< dialog handler for user interface */
65  SCIP_MESSAGEHDLR* messagehdlr; /**< message handler for output handling, or NULL */
66  SCIP_CLOCK* totaltime; /**< total SCIP running time */
67 
68  /* PROBLEM */
69  SCIP_STAT* stat; /**< dynamic problem statistics */
70  SCIP_PROB* origprob; /**< original problem data */
71  SCIP_PRIMAL* origprimal; /**< primal data and solution storage for solution candidates */
72 
73  /* REOPTIMIZATION */
74  SCIP_REOPT* reopt; /**< reoptimization data */
75 
76  /* TRANSFORMED */
77  SCIP_EVENTFILTER* eventfilter; /**< event filter for global (not variable dependent) events */
78  SCIP_EVENTQUEUE* eventqueue; /**< event queue to cache events and process them later (bound change events) */
79  SCIP_BRANCHCAND* branchcand; /**< storage for branching candidates */
80  SCIP_LP* lp; /**< LP data */
81  SCIP_NLP* nlp; /**< NLP data */
82  SCIP_RELAXATION* relaxation; /**< global relaxation data */
83  SCIP_PRIMAL* primal; /**< primal data and solution storage */
84  SCIP_TREE* tree; /**< branch and bound tree */
85  SCIP_CONFLICT* conflict; /**< conflict analysis data */
86  SCIP_CLIQUETABLE* cliquetable; /**< collection of cliques */
87  SCIP_PROB* transprob; /**< transformed problem after presolve */
88 
89  /* SOLVING */
90  SCIP_PRICESTORE* pricestore; /**< storage for priced variables */
91  SCIP_SEPASTORE* sepastore; /**< storage for separated cuts */
92  SCIP_SEPASTORE* sepastoreprobing; /**< storage for separated cuts during probing mode */
93  SCIP_CONFLICTSTORE* conflictstore; /**< storage for conflicts */
94  SCIP_CUTPOOL* cutpool; /**< global cut pool */
95  SCIP_CUTPOOL* delayedcutpool; /**< global delayed cut pool */
96 
97  /* PARALLEL */
98  SCIP_SYNCSTORE* syncstore; /**< the data structure for storing synchronization information */
99  SCIP_CONCURRENT* concurrent; /**< data required for concurrent solve */
100 };
101 
102 #ifdef __cplusplus
103 }
104 #endif
105 
106 #endif
SCIP_STAT * stat
Definition: struct_scip.h:69
type definitions for implications, variable bounds, and cliques
SCIP_CONFLICT * conflict
Definition: struct_scip.h:85
type definitions for NLP management
type definitions for conflict store
SCIP_PRIMAL * origprimal
Definition: struct_scip.h:71
SCIP_EVENTQUEUE * eventqueue
Definition: struct_scip.h:78
SCIP_CLOCK * totaltime
Definition: struct_scip.h:66
SCIP_PRIMAL * primal
Definition: struct_scip.h:83
SCIP_CUTPOOL * delayedcutpool
Definition: struct_scip.h:95
SCIP_CONCURRENT * concurrent
Definition: struct_scip.h:99
SCIP_BRANCHCAND * branchcand
Definition: struct_scip.h:79
type definitions for storing priced variables
type definitions for global SCIP settings
SCIP_PROB * transprob
Definition: struct_scip.h:87
type definitions for collecting reoptimization information
type definitions for branching rules
SCIP_PROB * origprob
Definition: struct_scip.h:70
type definitions for problem statistics
SCIP_DIALOGHDLR * dialoghdlr
Definition: struct_scip.h:64
type definitions for LP management
SCIP_PRICESTORE * pricestore
Definition: struct_scip.h:90
SCIP_MEM * mem
Definition: struct_scip.h:61
SCIP_EVENTFILTER * eventfilter
Definition: struct_scip.h:77
SCIP_INTERRUPT * interrupt
Definition: struct_scip.h:63
SCIP_SYNCSTORE * syncstore
Definition: struct_scip.h:98
type definition of concurrent data
type definitions for storing cuts in a cut pool
SCIP_CONFLICTSTORE * conflictstore
Definition: struct_scip.h:93
SCIP_REOPT * reopt
Definition: struct_scip.h:74
type definitions for storing separated cuts
type definitions for relaxators
type definitions for conflict analysis
type definitions for managing events
SCIP_CUTPOOL * cutpool
Definition: struct_scip.h:94
SCIP_CLIQUETABLE * cliquetable
Definition: struct_scip.h:86
SCIP_SEPASTORE * sepastore
Definition: struct_scip.h:91
type definitions for branch and bound tree
type definitions for clocks and timing issues
type definitions for storing and manipulating the main problem
type definitions for block memory pools and memory buffers
the type definitions for the synchronization store
SCIP_MESSAGEHDLR * messagehdlr
Definition: struct_scip.h:65
type definitions for user interface dialog
SCIP_NLP * nlp
Definition: struct_scip.h:81
SCIP_TREE * tree
Definition: struct_scip.h:84
SCIP_RELAXATION * relaxation
Definition: struct_scip.h:82
type definitions for collecting primal CIP solutions and primal informations
common defines and data types used in all packages of SCIP
SCIP_LP * lp
Definition: struct_scip.h:80
SCIP_SEPASTORE * sepastoreprobing
Definition: struct_scip.h:92
type definitions for catching the user CTRL-C interrupt