Scippy

SCIP

Solving Constraint Integer Programs

sepaspecial.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-2022 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 sepaspecial.h
17  * @brief Separator for Steiner tree problem contraints beyond flow-balance-directed-cut constraints
18  * @author Daniel Rehfeldt
19  *
20  * This file includes some special separator routines beyond the flow-balance directed cut formulation constraints.
21  *
22  *
23  *
24  */
25 
26 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
27 
28 #ifndef APPLICATIONS_STP_SRC_SEPASPECIAL_H_
29 #define APPLICATIONS_STP_SRC_SEPASPECIAL_H_
30 
31 #include "scip/scip.h"
32 #include "graph.h"
33 
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 
40 
41 /** cuts for pseudo ancestor cliques */
43 
44 /** cuts for implications between potential terminals */
46 
47 /** cuts for implications between non-terminals and terminals */
49 
50 
55 extern const int* sepaspecial_pcimplicationsGetStarts(const PCIMPLICATION*);
56 extern const int* sepaspecial_pcimplicationsGetVerts(const PCIMPLICATION*);
63 
64 
65 
66 #ifdef __cplusplus
67 }
68 #endif
69 
70 
71 #endif /* APPLICATIONS_STP_SRC_SEPASPECIAL_H_ */
void sepaspecial_vtimplicationsFree(SCIP *, VTIMPLICATION **)
Definition: sepaspecial.c:730
int sepaspecial_pcimplicationsGetNstarts(const PCIMPLICATION *)
Definition: sepaspecial.c:636
enum SCIP_Retcode SCIP_RETCODE
Definition: type_retcode.h:54
includes various files containing graph methods used for Steiner tree problems
void sepaspecial_pcimplicationsFree(SCIP *, PCIMPLICATION **)
Definition: sepaspecial.c:485
SCIP_RETCODE sepaspecial_vtimplicationsInit(SCIP *, const GRAPH *, VTIMPLICATION **)
Definition: sepaspecial.c:669
SCIP_RETCODE sepaspecial_pacliquesSeparate(SCIP *, SCIP_CONSHDLR *, PACLIQUES *, int, int *)
Definition: sepaspecial.c:222
void sepaspecial_pacliquesFree(SCIP *, PACLIQUES **)
Definition: sepaspecial.c:207
const int * sepaspecial_pcimplicationsGetVerts(const PCIMPLICATION *)
Definition: sepaspecial.c:658
SCIP_RETCODE sepaspecial_pcimplicationsSeparate(SCIP *, SCIP_CONSHDLR *, PCIMPLICATION *, int, int *)
Definition: sepaspecial.c:498
const int * sepaspecial_pcimplicationsGetStarts(const PCIMPLICATION *)
Definition: sepaspecial.c:647
SCIP_RETCODE sepaspecial_vtimplicationsSeparate(SCIP *, SCIP_CONSHDLR *, VTIMPLICATION *, int, int *)
Definition: sepaspecial.c:743
SCIP_RETCODE sepaspecial_pcimplicationsInit(SCIP *, const GRAPH *, PCIMPLICATION **)
Definition: sepaspecial.c:371
SCIP_RETCODE sepaspecial_pacliquesInit(SCIP *, const GRAPH *, PACLIQUES **)
Definition: sepaspecial.c:165
SCIP callable library.