1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /*                                                                           */
3 /*                  This file is part of the program and library             */
4 /*         SCIP --- Solving Constraint Integer Programs                      */
5 /*                                                                           */
6 /*    Copyright (C) 2002-2021 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_dcmp.h
17  * @ingroup TYPEDEFINITIONS
18  * @brief  type definitions for decompositions and the decomposition store
19  * @author Gregor Hendel
20  */
21 
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
23 
24 #ifndef SRC_SCIP_TYPE_DECOMP_H_
25 #define SRC_SCIP_TYPE_DECOMP_H_
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 typedef struct SCIP_Decomp SCIP_DECOMP;
32 typedef struct SCIP_DecompStore SCIP_DECOMPSTORE;
33 
34 
35 #define SCIP_DECOMP_LINKVAR -1      /**< special label for linking variables */
36 #define SCIP_DECOMP_LINKCONS -2     /**< special label for linking constraints */
37 
38 #ifdef __cplusplus
39 }
40 #endif
41 
42 #endif
43