Scippy

SCIP

Solving Constraint Integer Programs

dpborder.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 dpborder.h
17  * @brief Dynamic programming solver for Steiner tree (sub-) problems with small border
18  * @author Daniel Rehfeldt
19  *
20  * This file implements a dynamic programming method from Polzin and Vahdati to solve Steiner tree problems to optimality.
21  * See also "Practical Partitioning-Based Methods for the Steiner Problem", WEA 2006
22  *
23  */
24 
25 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
26 
27 
28 #ifndef APPLICATIONS_STP_SRC_DPBORDER_H_
29 #define APPLICATIONS_STP_SRC_DPBORDER_H_
30 
31 #include "scip/scip.h"
32 #include "graph.h"
33 
34 
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
41 
42 
43 extern SCIP_RETCODE dpborder_init(SCIP*, const GRAPH*, DPBORDER**);
46 extern void dpborder_free(SCIP*, DPBORDER**);
47 
48 
49 
50 #ifdef __cplusplus
51 }
52 #endif
53 
54 #endif /* APPLICATIONS_STP_SRC_DPBORDER_H_ */
enum SCIP_Retcode SCIP_RETCODE
Definition: type_retcode.h:54
includes various files containing graph methods used for Steiner tree problems
void dpborder_free(SCIP *, DPBORDER **)
#define SCIP_Bool
Definition: def.h:84
SCIP_RETCODE dpborder_solve(SCIP *, GRAPH *, DPBORDER *, int *, SCIP_Bool *)
SCIP_RETCODE dpborder_init(SCIP *, const GRAPH *, DPBORDER **)
SCIP_RETCODE dpborder_probePotential(SCIP *, GRAPH *, DPBORDER *, SCIP_Bool *)
SCIP callable library.