Scippy

SCIP

Solving Constraint Integer Programs

cycplugins.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the program and library */
4 
5 /* SCIP --- Solving Constraint Integer Programs */
6 /* */
7 /* Copyright (C) 2002-2019 Konrad-Zuse-Zentrum */
8 /* fuer Informationstechnik Berlin */
9 /* */
10 /* SCIP is distributed under the terms of the ZIB Academic License. */
11 /* */
12 /* You should have received a copy of the ZIB Academic License */
13 /* along with SCIP; see the file COPYING. If not visit scip.zib.de. */
14 /* */
15 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
16 
17 /**@file cycplugins.h
18  * @brief SCIP plugins for cycle clustering
19  * @author Leon Eifler
20  */
21 
22 /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
23 
24 #ifndef __SCIP_SCIPCYCPLUGINS_H__
25 #define __SCIP_SCIPCYCPLUGINS_H__
26 
27 
28 #include "heur_cycgreedy.h"
29 #include "scip/scip.h"
30 
31 #include "reader_cyc.h"
32 
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 /** includes default SCIP plugins into SCIP */
39 extern
41  SCIP* scip /**< SCIP data structure */
42  );
43 
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #endif
SCIP_RETCODE SCIPincludeCycPlugins(SCIP *scip)
Definition: cycplugins.c:36
enum SCIP_Retcode SCIP_RETCODE
Definition: type_retcode.h:53
file reader for cycle clustering instances
Greedy primal heuristic. States are assigned to clusters iteratively. At each iteration all possible ...
SCIP callable library.